Home | History | Annotate | Download | only in tests

Lines Matching refs:yasm__combpath_unix

49     {yasm__combpath_unix, "file1", "file2", "file2"},
50 {yasm__combpath_unix, "./file1.ext", "./file2.ext", "file2.ext"},
51 {yasm__combpath_unix, "/file1", "file2", "/file2"},
52 {yasm__combpath_unix, "file1", "/file2", "/file2"},
53 {yasm__combpath_unix, "/foo/file1", "../../file2", "/file2"},
54 {yasm__combpath_unix, "/foo//file1", "../../file2", "/file2"},
55 {yasm__combpath_unix, "foo/bar/file1", "../file2", "foo/file2"},
56 {yasm__combpath_unix, "foo/bar/file1", "../../../file2", "../file2"},
57 {yasm__combpath_unix, "foo/bar//file1", "../..//..//file2", "../file2"},
58 {yasm__combpath_unix, "foo/bar/", "file2", "foo/bar/file2"},
59 {yasm__combpath_unix, "../../file1", "../../file2", "../../../../file2"},
60 {yasm__combpath_unix, "../foo/bar/../file1", "../../file2", "../foo/bar/../../../file2"},
61 {yasm__combpath_unix, "/", "../file2", "/file2"},
62 {yasm__combpath_unix, "../foo/", "../file2", "../file2"},
63 {yasm__combpath_unix, "../foo/file1", "../../bar/file2", "../../bar/file2"},
99 if (test->combpath == &yasm__combpath_unix)