Home
last modified time | relevance | path

Searched refs:test_exception (Results 1 – 2 of 2) sorted by relevance

/oneTBB/test/common/
H A Dexception_handling.h100 class test_exception : public std::exception {
103 test_exception ( const char* description ) : my_description(description) {} in test_exception() function
108 class solitary_test_exception : public test_exception {
110 solitary_test_exception ( const char* description ) : test_exception(description) {} in solitary_test_exception()
113 using PropagatedException = test_exception;
122 throw test_exception(EXCEPTION_DESCR); in ThrowTestException()
142 throw test_exception(EXCEPTION_DESCR); in ThrowTestException()
182 …(e), (g_SolitaryException ? typeid(solitary_test_exception) : typeid(test_exception)).name() ) == …
/oneTBB/test/tbb/
H A Dtest_task_group.cpp394 class test_exception : public std::exception class
398 test_exception ( const char* descr ) : m_strDescription(descr) {} in test_exception() function in test_exception
403 using TestException = test_exception;
429 TBB_TEST_THROW(test_exception(EXCEPTION_DESCR1)); in operator ()()
476 throw test_exception(EXCEPTION_DESCR2); in LaunchChildrenWithFunctor()