/external/apache-harmony/support/src/test/resources/tests/resources/ |
hyts_ZipFile.zip | |
/libcore/support/src/test/java/tests/resources/ |
hyts_ZipFile.zip | |
/external/toybox/tests/ |
wc.test | 7 cat >file1 <<EOF 17 testing "wc -c" "wc -c file1" "26 file1\n" "" "" 18 testing "wc -l" "wc -l file1" "4 file1\n" "" "" 19 testing "wc -w" "wc -w file1" "5 file1\n" "" "" 20 testing "wc format" "wc file1" "4 5 26 file1\n" "" "" 21 testing "wc multiple files" "wc input - file1" \ [all...] |
sha1sum.test | 29 echo -n "abc" > file1 42 "sha1sum file1" \ 43 "a9993e364706816aba3e25717850c26c9cd0d89d file1\n" \ 46 testing "sha1sum file1 file2" \ 47 "sha1sum file1 file2" \ 48 "a9993e364706816aba3e25717850c26c9cd0d89d file1\n589c22335a381f122d129225f5c0ba3056ed5811 file2\n" \ 51 testing "sha1sum file1 file2 -" \ 52 "sha1sum file1 file2 -" \ 53 "a9993e364706816aba3e25717850c26c9cd0d89d file1\n589c22335a381f122d129225f5c0ba3056ed5811 file2\na9993e364706816aba3e25717850c26c9cd0d89d -\n" \ 56 rm -f file1 file [all...] |
cat.test | 7 echo "one" > file1 11 testing "cat file1 file2" "cat file1 file2" "one\ntwo\n" "" "" 12 testing "cat - file" "cat - file1" "zero\none\n" "" "zero\n" 13 testing "cat file -" "cat file1 -" "one\nzero\n" "" "zero\n" 15 testing "cat file1 notfound file2" \ 16 "cat file1 notfound file2 2>stderr && echo ok ; cat stderr; rm stderr" \ 20 testing "cat file1" \ 21 'cat "$FILE" > file1 && cmp "$FILE" file1 && echo yes' [all...] |
rev.test | 7 echo -e "one" > file1 11 testing "rev file1 file2" "rev file1 file2" "eno\nowt\n" "" "" 12 testing "rev - file" "rev - file1" "orez\neno\n" "" "zero\n" 13 testing "rev file -" "rev file1 -" "eno\norez\n" "" "zero\n" 16 testing "rev file1 notfound file2" \ 17 "rev file1 notfound file2 2>stderr && echo ok ; cat stderr; rm stderr" \ 25 rm file1 file
|
mv.test | 11 testing "Move old_file to new_file" "mv file file1 && [ ! -e file -a -f file1 ] && 27 touch file1 file2 dir1/file3 28 ln -s file1 link1 29 testing "Move multiple files/dir to a dir" "mv file1 file2 link1 dir1 dir2 && 30 [ ! -e file1 -a ! -e file2 -a ! -e link1 -a ! -e dir1 ] && 31 [ -f dir2/file1 -a -f dir2/file2 -a -L dir2/link1 -a -d dir2/dir1 ] && 32 [ -f dir2/dir1/file3 ] && readlink dir2/link1" "file1\n" "" "" 35 touch file1 36 testing "Move a empty file to new_file" "mv file1 file2 & [all...] |
losetup.test | 24 testing "cat file1 file2" "cat file1 file2" "one\ntwo\n" "" "" 25 testing "cat - file" "cat - file1" "zero\none\n" "" "zero\n" 26 testing "cat file -" "cat file1 -" "one\nzero\n" "" "zero\n" 28 testing "cat file1 notfound file2" \ 29 "cat file1 notfound file2 2>stderr && echo ok ; cat stderr; rm stderr" \ 32 testing "cat file1" \ 33 "cat /proc/self/exe > file1 && cmp /proc/self/exe file1 && echo yes" \ 36 testing "cat - file1" \ [all...] |
tac.test | 8 echo -e "one-A\none-B" > file1 12 testing "tac file1 file2" "tac file1 file2" "one-B\none-A\ntwo-B\ntwo-A\n" "" "" 13 testing "tac - file" "tac - file1" "zero-B\nzero-A\none-B\none-A\n" "" "zero-A\nzero-B\n" 14 testing "tac file -" "tac file1 -" "one-B\none-A\nzero-B\nzero-A\n" "" "zero-A\nzero-B\n" 16 testing "tac file1 notfound file2" \ 17 "tac file1 notfound file2 2>stderr && echo ok ; tac stderr; rm stderr" \ 29 rm file1 file
|
xxd.test | 7 echo "this is some text" > file1 12 testing "xxd file1" "xxd file1" \ 15 testing "xxd file1 -l" "xxd -l 2 file1" \ 23 testing "xxd -c 8 -g 4 file1" "xxd -c 8 -g 4 file1" \ 25 testing "xxd -c 8 -g 3 file1" "xxd -c 8 -g 3 file1" \ 28 testing "xxd -p" "xxd -p file1" "7468697320697320736f6d6520746578740a\n" "" " [all...] |
head.test | 16 baz" > file1 17 testing "head, multiple files" "head -n 2 input file1" "==> input <==\none\ntwo\n\n==> file1 <==\nfoo\nbar\n" "one\ntwo\nthree\n" "" 18 rm file1
|
ln.test | 11 echo file1 > file 20 [ file -ef hlink ] && cat hlink 2>/dev/null" "file1\n" "" "" 49 touch file1 file2 && mkdir dir 51 [ file1 -ef dir/file1 -a file2 -ef dir/file2 ] && echo 'yes'" "yes\n" "" "" 54 touch file1 file2 && mkdir dir 56 [ -L dir/file1 -a -L dir/file2 ] && readlink dir/file1 && 57 readlink dir/file2" "file1\nfile2\n" "" "" 60 echo file1 > fil [all...] |
tail.test | 8 echo -ne "$BIGTEST" > file1 10 testing "tail file" "tail file1" \ 12 testing "tail -n in bounds" "tail -n 3 file1" "nine\nten\neleven\n" "" "" 13 testing "tail -n out of bounds" "tail -n 999 file1" "$BIGTEST" "" "" 14 testing "tail -n+ in bounds" "tail -n +3 file1" \ 16 testing "tail -n+ outof bounds" "tail -n +999 file1" "" "" "" 17 testing "tail -c in bounds" "tail -c 27 file1" \ 19 testing "tail -c out of bounds" "tail -c 999 file1" "$BIGTEST" "" "" 20 testing "tail -c+ in bounds" "tail -c +27 file1" \ 22 testing "tail -c+ out of bonds" "tail -c +999 file1" "" "" "" [all...] |
bzcat.test | 17 echo "hello" > file1 20 tar -cjf file1.tar.bz2 file1 25 $bzcatExe file1.tar.bz2 file2.tar.bz2 file3.tar.bz2 > bzcatOut 26 testing "bzcat - decompresses multiple files" "bzcat file1.tar.bz2 file2.tar.bz2 file3.tar.bz2 > Tempfile && echo "yes" ; diff Tempfile bzcatOut && echo "yes"; rm -rf file* bzcatOut Tempfile " "yes\nyes\n" "" ""
|
xzcat.test | 17 echo "hello" > file1 20 tar -cJf file1.xz file1 25 $xzcatExe file1.xz file2.xz file3.xz > xzcatOut 26 testing "xzcat - decompresses multiple files" "xzcat file1.xz file2.xz file3.xz > Tempfile && echo "yes" ; diff Tempfile xzcatOut && echo "yes"; rm -rf file* xzcatOut Tempfile " "yes\nyes\n" "" ""
|
zcat.test | 17 echo "hello" > file1 20 tar -czf file1.gz file1 25 $zcatExe file1.gz file2.gz file3.gz > zcatOut 26 testing "zcat - decompresses multiple files" "zcat file1.gz file2.gz file3.gz > Tempfile && echo "yes" ; diff Tempfile zcatOut && echo "yes"; rm -rf file* zcatOut Tempfile " "yes\nyes\n" "" ""
|
/cts/tests/tests/media/res/raw/ |
playlist1.pls | 2 File1=testmp3.mp3
|
/external/google-breakpad/src/processor/testdata/ |
module3_bad.out | 2 FILE 1 file1.cc
|
/frameworks/support/documents-archive/tests/res/raw/ |
archive.zip | |
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testdata/ |
zipped.egg | |
/libcore/support/src/test/java/tests/support/ |
Support_DeleteOnExitTest.java | 12 File file1 = new File(args[0]); local 15 file1.deleteOnExit();
|
/toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/ |
objdump.WL | 9 directory/file1\.c: 10 file1\.c 1 .*
|
/build/kati/ |
pathutil_test.go | 203 cmd: `find testdir -name "file1"`, 206 ops: []findOp{findOpName("file1"), findOpPrint{}}, 337 cmd: `find testdir -name dir2 -prune -o -name file1`, 340 ops: []findOp{findOpOr{findOpAnd([]findOp{findOpName("dir2"), findOpPrune{}}), findOpName("file1")}, findOpPrint{}}, 417 fs.add(fs.file, "testdir/file1") 419 file1 := fs.add(fs.file, "testdir/dir1/file1") 422 fs.add(fs.file, "testdir/dir2/file1") 424 fs.symlink("testdir/dir2/link1", file1) 441 want: `testdir testdir/file1 testdir/file2 testdir/dir1 testdir/dir1/file1 testdir/dir1/file2 testdir/dir2 testdir/dir2/file1 t (…) [all...] |
/external/v8/tools/gcmole/ |
parallel.py | 9 parallel.py "clang --opt" file1 file2 11 clang --opt file1 15 ______________ file1 16 <output of clang --opt file1> 17 ______________ finish <exit code of clang --opt file1> ______________
|
/external/fio/examples/ |
e4defrag.fio | 14 filename=file1 26 filename=file1 37 filename=file1
|