Home
last modified time | relevance | path

Searched refs:ExpectError (Results 1 – 8 of 8) sorted by relevance

/external/v8/test/cctest/
Dtest-regexp.cc476 static void ExpectError(const char* input, const char* expected, in ExpectError() function
495 ExpectError("\\", kEndBackslash); in TEST()
497 ExpectError("(foo", kUnterminatedGroup); in TEST()
499 ExpectError("(?", kInvalidGroup); in TEST()
501 ExpectError("[", kUnterminatedCharacterClass); in TEST()
502 ExpectError("[a-", kUnterminatedCharacterClass); in TEST()
504 ExpectError("*", kNothingToRepeat); in TEST()
505 ExpectError("?", kNothingToRepeat); in TEST()
506 ExpectError("+", kNothingToRepeat); in TEST()
507 ExpectError("{1}", kNothingToRepeat); in TEST()
[all …]
/external/libbrillo/brillo/dbus/
Ddbus_object_unittest.cc143 void ExpectError(dbus::Response* response, const std::string& expected_code) { in ExpectError() function in brillo::dbus_utils::DBusObjectTest
200 ExpectError(response.get(), DBUS_ERROR_FAILED); in TEST_F()
324 ExpectError(response.get(), DBUS_ERROR_INVALID_ARGS); in TEST_F()
335 ExpectError(response.get(), DBUS_ERROR_INVALID_ARGS); in TEST_F()
345 ExpectError(response.get(), DBUS_ERROR_INVALID_ARGS); in TEST_F()
369 ExpectError(response.get(), DBUS_ERROR_UNKNOWN_METHOD); in TEST_F()
/external/autotest/client/virt/
Daexpect.py192 class ExpectError(Exception): class
209 class ExpectTimeoutError(ExpectError):
215 class ExpectProcessTerminatedError(ExpectError):
217 ExpectError.__init__(self, patterns, output)
998 raise ExpectError(patterns, o)
1228 except ExpectError, e:
Dvirt_test_utils.py708 except aexpect.ExpectError:
/external/autotest/client/virt/tests/
Dvlan.py69 except aexpect.ExpectError:
Dethtool.py140 except aexpect.ExpectError:
Dwhql_submission.py174 except aexpect.ExpectError, e:
/external/autotest/client/tests/kvm/tests/
Dvirtio_console.py637 except aexpect.ExpectError, e:
1917 except (error.TestFail, aexpect.ExpectError,