Home | History | Annotate | Download | only in tests

Lines Matching refs:yasm__combpath_win

66     {yasm__combpath_win, "file1", "file2", "file2"},
67 {yasm__combpath_win, "./file1.ext", "./file2.ext", "file2.ext"},
68 {yasm__combpath_win, "./file1.ext", ".\\file2.ext", "file2.ext"},
69 {yasm__combpath_win, ".\\file1.ext", "./file2.ext", "file2.ext"},
70 {yasm__combpath_win, "/file1", "file2", "\\file2"},
71 {yasm__combpath_win, "\\file1", "file2", "\\file2"},
72 {yasm__combpath_win, "file1", "/file2", "\\file2"},
73 {yasm__combpath_win, "file1", "\\file2", "\\file2"},
74 {yasm__combpath_win, "/foo\\file1", "../../file2", "\\file2"},
75 {yasm__combpath_win, "\\foo\\\\file1", "..\\../file2", "\\file2"},
76 {yasm__combpath_win, "foo/bar/file1", "../file2", "foo\\file2"},
77 {yasm__combpath_win, "foo/bar/file1", "../..\\../file2", "..\\file2"},
78 {yasm__combpath_win, "foo/bar//file1", "../..\\\\..//file2", "..\\file2"},
79 {yasm__combpath_win, "foo/bar/", "file2", "foo\\bar\\file2"},
80 {yasm__combpath_win, "..\\../file1", "../..\\file2", "..\\..\\..\\..\\file2"},
81 {yasm__combpath_win, "../foo/bar\\\\../file1", "../..\\file2", "..\\foo\\bar\\..\\..\\..\\file2"},
82 {yasm__combpath_win, "/", "../file2", "\\file2"},
83 {yasm__combpath_win, "../foo/", "../file2", "..\\file2"},
84 {yasm__combpath_win, "../foo/file1", "../..\\bar\\file2", "..\\..\\bar\\file2"},
85 {yasm__combpath_win, "c:/file1.ext", "./file2.ext", "c:\\file2.ext"},
86 {yasm__combpath_win, "e:\\path\\to/file1.ext", ".\\file2.ext", "e:\\path\\to\\file2.ext"},
87 {yasm__combpath_win, ".\\file1.ext", "g:file2.ext", "g:file2.ext"},