Lines Matching full:path
72 #define TEST_APPEND_PATH_COMPONENT(path, component, expected) \
73 fullpath = av_append_path_component((path), (component)); \
77 TEST_APPEND_PATH_COMPONENT("path", NULL, "path");
79 TEST_APPEND_PATH_COMPONENT("path", "comp", "path/comp");
80 TEST_APPEND_PATH_COMPONENT("path/", "comp", "path/comp");
81 TEST_APPEND_PATH_COMPONENT("path", "/comp", "path/comp");
82 TEST_APPEND_PATH_COMPONENT("path/", "/comp", "path/comp");
83 TEST_APPEND_PATH_COMPONENT("path/path2/", "/comp/comp2", "path/path2/comp/comp2");