Home
last modified time | relevance | path

Searched refs:foo (Results 1 – 25 of 105) sorted by relevance

12345

/busybox-1.35.0/testsuite/tar/
Dtar-extracts-all-subdirs2 mkdir -p foo/{1,2,3}
3 mkdir -p foo/1/{10,11}
4 mkdir -p foo/1/10/{100,101,102}
5 tar cf foo.tar -C foo .
6 rm -rf foo/*
7 busybox tar xf foo.tar -C foo ./1/10
8 find foo | sort >logfile.bb
9 rm -rf foo/*
10 tar xf foo.tar -C foo ./1/10
11 find foo | sort >logfile.gnu
Dtar-handles-nested-exclude3 mkdir foo
4 touch foo/bar
5 tar cf foo.tar foo
6 rm -rf foo
7 echo foo/bar >foobar.exclude
8 busybox tar xf foo.tar foo -X foobar.exclude
9 test -d foo -a ! -f foo/bar
Dtar-handles-exclude-and-extract-lists3 touch foo bar baz
4 tar cf foo.tar foo bar baz
5 echo foo >foo.exclude
6 rm foo bar baz
7 busybox tar xf foo.tar foo bar -X foo.exclude
8 test ! -f foo -a -f bar -a ! -f baz
Dtar-handles-multiple-X-options3 touch foo
5 tar cf foo.tar foo bar
6 echo foo > foo.exclude
8 rm foo bar
9 busybox tar xf foo.tar -X foo.exclude -X bar.exclude
10 test ! -f foo -a ! -f bar
Dtar-handles-empty-include-and-non-empty-exclude-list3 touch foo
4 tar cf foo.tar foo
5 echo foo >foo.exclude
6 busybox tar xf foo.tar -X foo.exclude
Dtar-extracts-to-standard-output1 echo foo > foo
2 tar cf foo.tar foo
3 cat foo.tar | busybox tar Ox | cmp foo -
Dtar-extracts-file1 touch foo
2 tar cf foo.tar foo
3 rm foo
4 busybox tar xf foo.tar
5 test -f foo
Dtar-extracts-from-standard-input1 touch foo
2 tar cf foo.tar foo
3 rm foo
4 cat foo.tar | busybox tar x
5 test -f foo
Dtar-extracts-multiple-files1 touch foo bar
2 tar cf foo.tar foo bar
3 rm foo bar
4 busybox tar -xf foo.tar
5 test -f foo
Dtar-archives-multiple-files2 touch foo bar
3 busybox tar cf foo.tar foo bar
4 rm foo bar
5 tar xf foo.tar
6 test -f foo -a -f bar
Dtar-complains-about-missing-file1 touch foo
2 tar cf foo.tar foo
3 ! busybox tar xf foo.tar bar
Dtar-handles-cz-options3 touch foo
4 busybox tar czf foo.tar.gz foo
5 gzip -d foo.tar.gz
/busybox-1.35.0/testsuite/
Dunzip.tests21 mkdir foo
22 touch foo/bar
23 zip foo.zip foo foo/bar > /dev/null
24 rm -f foo/bar
25 rmdir foo
30 rmdir foo
31 rm foo.zip
/busybox-1.35.0/coreutils/
Did_test.sh13 rm -f foo bar
17 $BUSYBOX id $OPTIONS >foo 2>/dev/null
24 diff foo bar
28 rm -f foo bar
36 $BUSYBOX id $OPTIONS $i >foo 2>/dev/null
43 diff foo bar
49 rm -f foo bar
61 rm -f foo bar
65 $BUSYBOX id $OPTIONS >foo 2>/dev/null
72 diff foo bar
[all …]
/busybox-1.35.0/testsuite/bunzip2/
Dbunzip2-removes-compressed-file1 echo foo | bzip2 >foo.bz2
2 busybox bunzip2 foo.bz2
3 test ! -f foo.bz2
/busybox-1.35.0/testsuite/bzcat/
Dbzcat-does-not-remove-compressed-file1 echo foo | bzip2 >foo.bz2
2 busybox bzcat foo.bz2
3 test -f foo.bz2
/busybox-1.35.0/testsuite/mv/
Dmv-moves-unreadable-files1 touch foo
2 chmod a-r foo
3 busybox mv foo bar
4 test ! -e foo
Dmv-preserves-hard-links2 touch foo
3 ln foo bar
5 busybox mv foo bar baz
6 test baz/foo -ef baz/bar
/busybox-1.35.0/testsuite/cp/
Dcp-preserves-hard-links2 touch foo
3 ln foo bar
5 busybox cp -d foo bar baz
6 test baz/foo -ef baz/bar
Dcp-parents2 mkdir -p foo/bar/baz
3 touch foo/bar/baz/file
5 busybox cp --parents foo/bar/baz/file dir
6 test -f dir/foo/bar/baz/file
Dcp-copies-empty-file1 touch foo
2 busybox cp foo bar
3 cmp foo bar
/busybox-1.35.0/testsuite/strings/
Dstrings-works-like-GNU1 rm -f foo bar
2 strings -af ../../busybox > foo
5 test ! -f foo -a -f bar
8 diff -q foo bar
/busybox-1.35.0/testsuite/tee/
Dtee-appends-input1 echo i\'m a little teapot >foo
2 cp foo bar
3 echo i\'m a little teapot >>foo
5 cmp foo bar
/busybox-1.35.0/testsuite/rm/
Drm-removes-file1 touch foo
2 busybox rm foo
3 test ! -f foo
/busybox-1.35.0/testsuite/gzip/
Dgzip-removes-original-file1 touch foo
2 busybox gzip foo
3 test ! -f foo

12345