Lines Matching full:d1

14 	assertMakeDir("d1", 0755);  in DEFINE_TEST()
15 assertMakeFile("d1/file1", 0644, "d1/file1"); in DEFINE_TEST()
16 assertEqualInt(0, systemf("%s -cf archive.tar file1 d1/file1", testprog)); in DEFINE_TEST()
63 assertMakeSymlink("d1", "realDir", 1); in DEFINE_TEST()
64 r = systemf("%s -xf ../archive.tar d1/file1 >test.out 2>test.err", testprog); in DEFINE_TEST()
66 assertIsSymlink("d1", "realDir", 1); in DEFINE_TEST()
67 assertFileNotExists("d1/file1"); in DEFINE_TEST()
76 assertMakeSymlink("d1", "realDir", 1); in DEFINE_TEST()
79 assertIsDir("d1", -1); in DEFINE_TEST()
80 assertFileContents("d1/file1", 8, "d1/file1"); in DEFINE_TEST()
89 assertMakeSymlink("d1", "realDir", 1); in DEFINE_TEST()
91 systemf("%s -xPf ../archive.tar d1/file1 >test.out 2>test.err", testprog)); in DEFINE_TEST()
92 assertIsSymlink("d1", "realDir", 1); in DEFINE_TEST()
93 assertFileContents("d1/file1", 8, "d1/file1"); in DEFINE_TEST()
102 assertMakeSymlink("d1", "realDir", 1); in DEFINE_TEST()
104 systemf("%s -xPUf ../archive.tar d1/file1 >test.out 2>test.err", testprog)); in DEFINE_TEST()
105 assertIsSymlink("d1", "realDir", 1); in DEFINE_TEST()
106 assertFileContents("d1/file1", 8, "d1/file1"); in DEFINE_TEST()
114 assertMakeDir("d1", 0755); in DEFINE_TEST()
115 assertMakeFile("d1/realfile1", 0644, "realfile1"); in DEFINE_TEST()
116 assertMakeSymlink("d1/file1", "d1/realfile1", 0); in DEFINE_TEST()
118 systemf("%s -xf ../archive.tar d1/file1 >test.out 2>test.err", testprog)); in DEFINE_TEST()
119 assertIsReg("d1/file1", umasked(0644)); in DEFINE_TEST()
120 assertFileContents("d1/file1", 8, "d1/file1"); in DEFINE_TEST()
121 assertFileContents("realfile1", 9, "d1/realfile1"); in DEFINE_TEST()
129 assertMakeDir("d1", 0755); in DEFINE_TEST()
130 assertMakeFile("d1/realfile1", 0644, "realfile1"); in DEFINE_TEST()
131 assertMakeSymlink("d1/file1", "d1/realfile1", 0); in DEFINE_TEST()
133 systemf("%s -xPUf ../archive.tar d1/file1 >test.out 2>test.err", testprog)); in DEFINE_TEST()
134 assertIsReg("d1/file1", umasked(0644)); in DEFINE_TEST()
135 assertFileContents("d1/file1", 8, "d1/file1"); in DEFINE_TEST()
136 assertFileContents("realfile1", 9, "d1/realfile1"); in DEFINE_TEST()