Lines Matching full:d1

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