/external/elfutils/tests/ |
run-early-offscn.sh | 28 testfiles testfile 30 testrun ./early-offscn testfile 0x500
|
run-strip-test.sh | 31 debugout=${debugfile:+-f testfile.debug.temp -F $debugfile} 36 tempfiles testfile.temp testfile.debug.temp testfile.unstrip 38 testrun ../src/strip -o testfile.temp $debugout $original 42 cmp $stripped testfile.temp || status=$? 45 testrun ../src/elflint -q testfile.temp || status=$? 48 cmp $debugfile testfile.debug.temp || status=$? 51 testrun ../src/elflint -q -d testfile.debug.temp || status=$? 54 testrun ../src/unstrip -o testfile.unstrip testfile.temp testfile.debug.tem [all...] |
run-unstrip-test.sh | 33 tempfiles testfile.unstrip 40 testrun ../src/unstrip -o testfile.unstrip $stripped $debugfile 42 testrun ../src/elfcmp --hash-inexact $original testfile.unstrip
|
run-arsymtest.sh | 32 testfile=arsymtest.test 34 tempfiles $okfile $tmpfile $testfile 45 sort $tmpfile > $testfile 48 if cmp $okfile $testfile; then
|
run-readelf-test1.sh | 31 debugout=${debugfile:+-f testfile.debug.temp -F $debugfile} 35 tempfiles testfile.temp 37 testrun ../src/readelf -r testfile3 > testfile.temp 39 diff -u - testfile.temp <<EOF
|
run-get-pubnames.sh | 29 testfiles testfile testfile2 31 testrun_compare ./get-pubnames testfile testfile2 <<\EOF
|
run-get-files.sh | 29 testfiles testfile testfile2 31 testrun_compare ./get-files testfile testfile2 <<\EOF
|
run-allfcts.sh | 29 testfiles testfile testfile2 testfile8 31 testrun_compare ./allfcts testfile testfile2 testfile8 <<\EOF
|
run-get-aranges.sh | 29 testfiles testfile testfile2 31 testrun_compare ./get-aranges testfile testfile2 <<\EOF
|
run-line2addr.sh | 29 testfiles testfile testfile2 testfile8 testfile14 testfile23 31 testrun_compare ./line2addr -e testfile f.c:4 testfile f.c:8 <<\EOF
|
run-strings-test.sh | 29 files="testfile `seq 2 9 | while read n; do echo testfile$n; done`" 33 testfile: f4 /lib/ld-linux.so.2 34 testfile: 1c9 __gmon_start__ 35 testfile: 1d8 libc.so.6 36 testfile: 1e2 __cxa_finalize 37 testfile: 1f1 __deregister_frame_info 38 testfile: 209 _IO_stdin_used 39 testfile: 218 __libc_start_main 40 testfile: 22a __register_frame_inf [all...] |
run-find-prologues.sh | 28 testfiles testfile testfile11 testfile22 testfile24 \ 31 testrun_compare ./find-prologues -e testfile <<\EOF
|
/external/chromium_org/third_party/sqlite/src/test/ |
mallocAll.test | 51 foreach testfile [lsort -dictionary [glob $testdir/*malloc*.test]] { 52 set tail [file tail $testfile] 55 source $testfile
|
async.test | 64 foreach testfile [lsort -dictionary [glob $testdir/*.test]] { 65 set tail [file tail $testfile] 67 source $testfile
|
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/model/ |
testfile_test.py | 31 import testfile namespace 56 test_file = testfile.TestFile() 59 return testfile.TestFile.get_files(None, None, None, None, limit=None) 66 _, code = testfile.TestFile.add_file(*file_data) 77 _, code = testfile.TestFile.save_file(files[0], None) 97 _, code = testfile.TestFile.overwrite_or_add_file(*file_data [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_aifc.py | 104 testfile = Wrapfile(self.sndfilepath) 105 f = self.f = aifc.open(testfile) 106 self.assertEqual(testfile.closed, False) 108 self.assertEqual(testfile.closed, True) 109 testfile = open(TESTFN, 'wb') 110 fout = aifc.open(testfile, 'wb') 111 self.assertFalse(testfile.closed) 114 self.assertTrue(testfile.closed)
|
test_normalization.py | 12 def check_version(testfile): 13 hdr = testfile.readline()
|
test_tokenize.py | 530 >>> for testfile in testfiles: 531 ... if not roundtrip(open(testfile)): 532 ... print "Roundtrip failed for file %s" % testfile
|
test_traceback.py | 76 testfile = os.path.join(testdir, 'test_bug737473.py') 77 print >> open(testfile, 'w'), """ 99 print >> open(testfile, 'w'), """
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_aifc.py | 104 testfile = Wrapfile(self.sndfilepath) 105 f = self.f = aifc.open(testfile) 106 self.assertEqual(testfile.closed, False) 108 self.assertEqual(testfile.closed, True) 109 testfile = open(TESTFN, 'wb') 110 fout = aifc.open(testfile, 'wb') 111 self.assertFalse(testfile.closed) 114 self.assertTrue(testfile.closed)
|
test_normalization.py | 12 def check_version(testfile): 13 hdr = testfile.readline()
|
test_tokenize.py | 530 >>> for testfile in testfiles: 531 ... if not roundtrip(open(testfile)): 532 ... print "Roundtrip failed for file %s" % testfile
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/ |
test_email_torture.py | 19 from email import __file__ as testfile namespace 24 path = abspath(join(dirname(testfile), os.pardir, 'moredata', filename))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/ |
test_email_torture.py | 19 from email import __file__ as testfile namespace 24 path = abspath(join(dirname(testfile), os.pardir, 'moredata', filename))
|
/external/markdown/MarkdownTest/ |
MarkdownTest.pl | 45 foreach my $testfile (glob "$test_dir/*.text") { 46 my $testname = $testfile; 51 my $resultfile = $testfile; 58 # open(TEST, $testfile) || die("Can't open testfile: $!"); 64 my $t_output = `'$script' '$testfile'`;
|