Searched refs:TestFailed (Results 1 – 25 of 53) sorted by relevance
123
/external/python/cpython2/Lib/test/ |
D | double_const.py | 1 from test.test_support import TestFailed 27 raise TestFailed("Manifest const %s lost too much precision " % x_str)
|
D | test_eof.py | 15 raise test_support.TestFailed 25 raise test_support.TestFailed
|
D | test_sunaudiodev.py | 1 from test.test_support import findfile, TestFailed, import_module 21 raise TestFailed, msg
|
D | test_threaded_import.py | 9 from test.test_support import verbose, TestFailed, import_module 37 raise TestFailed(test.threaded_import_hangers.errors)
|
D | test_format.py | 2 from test.test_support import verbose, have_unicode, TestFailed 240 raise TestFailed 267 raise TestFailed, 'did not get expected exception: %s' % excmsg 301 raise TestFailed, '"%*d"%(maxsize, -127) should fail'
|
D | test_ntpath.py | 5 from test.test_support import TestFailed 12 raise TestFailed, "%s should return: %r but returned: %r" \
|
D | test_doctest2.py | 116 raise test_support.TestFailed("expected %d tests to run, not %d" %
|
D | test_coercion.py | 3 from test.test_support import run_unittest, TestFailed, check_warnings 329 exc = TestFailed("__coerce__() returning its arguments reverse "
|
D | test_richcmp.py | 32 raise test_support.TestFailed, "Number.__cmp__() should not be called" 57 raise test_support.TestFailed, "Vector.__cmp__() should not be called"
|
D | test_imaplib.py | 242 raise support.TestFailed("Can't read certificate files!")
|
D | test_zipimport_support.py | 55 raise test.test_support.TestFailed("%d of %d doctests failed" % (f, t))
|
D | test_copy.py | 54 raise test_support.TestFailed, "shouldn't call this" 273 raise test_support.TestFailed, "shouldn't call this"
|
D | pickletester.py | 12 from test.test_support import TestFailed, verbose, have_unicode, TESTFN 1592 raise TestFailed, "This __reduce__ shouldn't be called"
|
/external/python/cpython3/Lib/test/ |
D | double_const.py | 1 from test.support import TestFailed 27 raise TestFailed("Manifest const %s lost too much precision " % x_str)
|
D | test_eof.py | 15 raise support.TestFailed 25 raise support.TestFailed
|
D | test_format.py | 1 from test.support import verbose, TestFailed 88 raise TestFailed('did not get expected exception: %s' % excmsg) 316 raise TestFailed('"%*d"%(maxsize, -127) should fail') 390 raise TestFailed('"%*d"%(maxsize, -127) should fail')
|
D | test_doctest2.py | 115 raise support.TestFailed("expected %d tests to run, not %d" %
|
D | test_ntpath.py | 6 from test.support import TestFailed, FakePath 21 raise TestFailed("%s should return: %s but returned: %s" \ 43 raise TestFailed("%s should return: %s but returned: %s" \
|
D | test_richcmp.py | 32 raise support.TestFailed("Number.__cmp__() should not be called") 57 raise support.TestFailed("Vector.__cmp__() should not be called")
|
D | test_zipimport_support.py | 48 raise test.support.TestFailed("%d of %d doctests failed" % (f, t))
|
/external/python/cpython2/Lib/test/support/ |
D | __init__.py | 53 class TestFailed(Error): class 524 raise TestFailed("tests should never set the SO_REUSEADDR " \ 529 raise TestFailed("tests should never set the SO_REUSEPORT " \ 902 raise TestFailed('invalid resource "%s"' % fn) 1545 raise TestFailed(err) 1664 raise TestFailed("%d of %d doctests failed" % (f, t))
|
/external/python/cpython3/Lib/test/support/ |
D | __init__.py | 117 class TestFailed(Error): class 713 raise TestFailed("tests should never set the SO_REUSEADDR " \ 718 raise TestFailed("tests should never set the SO_REUSEPORT " \ 1159 raise TestFailed('invalid resource %r' % fn) 1914 raise TestFailed(err) 2037 raise TestFailed("%d of %d doctests failed" % (f, t))
|
/external/python/cpython3/Lib/test/libregrtest/ |
D | runtest.py | 195 except support.TestFailed as msg:
|
/external/google-breakpad/src/testing/gtest/include/gtest/ |
D | gtest.h | 851 static bool TestFailed(const TestInfo* test_info) { in TestFailed() function
|
/external/llvm/utils/unittest/googletest/include/gtest/ |
D | gtest.h | 851 static bool TestFailed(const TestInfo* test_info) { in TestFailed() function
|
123