HomeSort by relevance Sort by last modified time
    Searched full:testfn (Results 151 - 175 of 195) sorted by null

1 2 3 4 5 67 8

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_codecs.py 494 self.addCleanup(test_support.unlink, test_support.TESTFN)
495 with open(test_support.TESTFN, 'wb') as fp:
497 with codecs.open(test_support.TESTFN, 'U', encoding=self.encoding) as reader:
    [all...]
test_support.py 33 "fcmp", "have_unicode", "is_jython", "TESTFN", "HOST", "FUZZ",
423 TESTFN = '$test'
425 TESTFN = 'testfile'
427 TESTFN = '@test'
467 # Disambiguate TESTFN for parallel testing, while letting it remain a valid
469 TESTFN = "{}_{}_tmp".format(TESTFN, os.getpid())
538 file = open(TESTFN, "wb")
543 unlink(TESTFN)
    [all...]
regrtest.py 765 'test_support.TESTFN',
818 if os.path.isfile(test_support.TESTFN):
820 elif os.path.isdir(test_support.TESTFN):
827 if os.path.isfile(test_support.TESTFN):
828 os.unlink(test_support.TESTFN)
829 elif os.path.isdir(test_support.TESTFN):
830 shutil.rmtree(test_support.TESTFN)
    [all...]
test_bsddb.py 323 fname = test_support.TESTFN
336 fname = test_support.TESTFN
test_platform.py 21 link = os.path.abspath(test_support.TESTFN)
list_tests.py 60 with open(test_support.TESTFN, "wb") as fo:
62 with open(test_support.TESTFN, "rb") as fo:
65 os.remove(test_support.TESTFN)
test_cfgparser.py 429 with open(test_support.TESTFN, 'w') as f:
433 os.unlink(test_support.TESTFN)
439 with open(test_support.TESTFN) as f:
test_sys_settrace.py 674 with open(test_support.TESTFN, "wb") as fp:
676 with open(test_support.TESTFN, "wb") as fp:
751 self.addCleanup(test_support.unlink, test_support.TESTFN)
pickletester.py 9 from test.test_support import TestFailed, verbose, have_unicode, TESTFN
    [all...]
test_multiprocessing.py 330 def _test_sys_exit(cls, reason, testfn):
331 sys.stderr = open(testfn, 'w')
339 testfn = test_support.TESTFN
340 self.addCleanup(test_support.unlink, testfn)
343 p = self.Process(target=self._test_sys_exit, args=(reason, testfn))
349 with open(testfn, 'r') as f:
    [all...]
test_complex.py 482 fo = open(test_support.TESTFN, "wb")
485 fo = open(test_support.TESTFN, "rb")
490 test_support.unlink(test_support.TESTFN)
test_gzip.py 26 filename = test_support.TESTFN
test_mailbox.py 54 self._path = test_support.TESTFN
    [all...]
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 329 if (Function *TestFn = globalInitUsesExternalBA(I)) {
336 << "' and from test function '" << TestFn->getName() << "'.\n";
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
regrtest.py 765 'test_support.TESTFN',
818 if os.path.isfile(test_support.TESTFN):
820 elif os.path.isdir(test_support.TESTFN):
827 if os.path.isfile(test_support.TESTFN):
828 os.unlink(test_support.TESTFN)
829 elif os.path.isdir(test_support.TESTFN):
830 shutil.rmtree(test_support.TESTFN)
    [all...]
test_bsddb.py 323 fname = test_support.TESTFN
336 fname = test_support.TESTFN
test_platform.py 21 link = os.path.abspath(test_support.TESTFN)
list_tests.py 60 with open(test_support.TESTFN, "wb") as fo:
62 with open(test_support.TESTFN, "rb") as fo:
65 os.remove(test_support.TESTFN)
test_cfgparser.py 429 with open(test_support.TESTFN, 'w') as f:
433 os.unlink(test_support.TESTFN)
439 with open(test_support.TESTFN) as f:
test_sys_settrace.py 674 with open(test_support.TESTFN, "wb") as fp:
676 with open(test_support.TESTFN, "wb") as fp:
751 self.addCleanup(test_support.unlink, test_support.TESTFN)
pickletester.py 9 from test.test_support import TestFailed, verbose, have_unicode, TESTFN
    [all...]
test_multiprocessing.py 330 def _test_sys_exit(cls, reason, testfn):
331 sys.stderr = open(testfn, 'w')
339 testfn = test_support.TESTFN
340 self.addCleanup(test_support.unlink, testfn)
343 p = self.Process(target=self._test_sys_exit, args=(reason, testfn))
349 with open(testfn, 'r') as f:
    [all...]
test_complex.py 482 fo = open(test_support.TESTFN, "wb")
485 fo = open(test_support.TESTFN, "rb")
490 test_support.unlink(test_support.TESTFN)
test_gzip.py 26 filename = test_support.TESTFN
test_mailbox.py 54 self._path = test_support.TESTFN
    [all...]

Completed in 434 milliseconds

1 2 3 4 5 67 8