Changeset 3bacee1 in mainline for uspace/lib/uri/test/parser.c


Ignore:
Timestamp:
2018-04-12T16:27:17Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3cf22f9
Parents:
76d0981d
git-author:
Jiri Svoboda <jiri@…> (2018-04-11 19:25:33)
git-committer:
Jiri Svoboda <jiri@…> (2018-04-12 16:27:17)
Message:

Make ccheck-fix again and commit more good files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/uri/test/parser.c

    r76d0981d r3bacee1  
    7474PCUT_TEST_SUITE(uri_parse);
    7575
    76 PCUT_TEST_BEFORE {
     76PCUT_TEST_BEFORE
     77{
    7778        parsed_uri = NULL;
    7879        expected_uri.scheme = NULL;
     
    8687}
    8788
    88 PCUT_TEST_AFTER {
     89PCUT_TEST_AFTER
     90{
    8991        if (parsed_uri != NULL) {
    9092                uri_destroy(parsed_uri);
     
    9395}
    9496
    95 PCUT_TEST(only_hostname) {
     97PCUT_TEST(only_hostname)
     98{
    9699        expected_uri.scheme = "http";
    97100        expected_uri.host = "localhost";
     
    100103}
    101104
    102 PCUT_TEST(hostname_with_user) {
     105PCUT_TEST(hostname_with_user)
     106{
    103107        expected_uri.scheme = "http";
    104108        expected_uri.host = "localhost";
     
    108112}
    109113
    110 PCUT_TEST(hostname_with_user_and_password) {
     114PCUT_TEST(hostname_with_user_and_password)
     115{
    111116        expected_uri.scheme = "https";
    112117        expected_uri.host = "localhost";
     
    117122}
    118123
    119 PCUT_TEST(path_specification) {
     124PCUT_TEST(path_specification)
     125{
    120126        expected_uri.scheme = "http";
    121127        expected_uri.host = "localhost";
     
    125131}
    126132
    127 PCUT_TEST(with_fragment) {
     133PCUT_TEST(with_fragment)
     134{
    128135        expected_uri.scheme = "http";
    129136        expected_uri.host = "localhost";
Note: See TracChangeset for help on using the changeset viewer.