| /TaskScheduler/ThirdParty/UnitTest++/UnitTest++/ |
| H A D | TestList.cpp | 14 void TestList::Add(Test* test) in Add() argument 19 m_head = test; in Add() 20 m_tail = test; in Add() 24 m_tail->m_nextTest = test; in Add() 25 m_tail = test; in Add() 34 ListAdder::ListAdder(TestList& list, Test* test) in ListAdder() argument 36 list.Add(test); in ListAdder()
|
| H A D | TestResults.cpp | 17 void TestResults::OnTestStart(TestDetails const& test) in OnTestStart() argument 22 m_testReporter->ReportTestStart(test); in OnTestStart() 25 void TestResults::OnTestFailure(TestDetails const& test, char const* failure) in OnTestFailure() argument 35 m_testReporter->ReportFailure(test, failure); in OnTestFailure() 38 void TestResults::OnTestFinish(TestDetails const& test, float secondsElapsed) in OnTestFinish() argument 41 m_testReporter->ReportTestFinish(test, secondsElapsed); in OnTestFinish()
|
| H A D | TestReporterStdout.h | 11 virtual void ReportTestStart(TestDetails const& test); 12 virtual void ReportFailure(TestDetails const& test, char const* failure); 13 virtual void ReportTestFinish(TestDetails const& test, float secondsElapsed);
|
| H A D | TestReporter.h | 15 virtual void ReportTestStart(TestDetails const& test) = 0; 16 virtual void ReportFailure(TestDetails const& test, char const* failure) = 0; 17 virtual void ReportTestFinish(TestDetails const& test, float secondsElapsed) = 0;
|
| H A D | TestResults.h | 16 void OnTestStart(TestDetails const& test); 17 void OnTestFailure(TestDetails const& test, char const* failure); 18 void OnTestFinish(TestDetails const& test, float secondsElapsed);
|
| H A D | CompositeTestReporter.cpp | 46 void CompositeTestReporter::ReportTestStart(TestDetails const& test) in ReportTestStart() argument 49 m_reporters[index]->ReportTestStart(test); in ReportTestStart() 52 void CompositeTestReporter::ReportTestFinish(TestDetails const& test, float secondsElapsed) in ReportTestFinish() argument 55 m_reporters[index]->ReportTestFinish(test, secondsElapsed); in ReportTestFinish()
|
| H A D | CompositeTestReporter.h | 17 virtual void ReportTestStart(TestDetails const& test); 18 virtual void ReportFailure(TestDetails const& test, char const* failure); 19 virtual void ReportTestFinish(TestDetails const& test, float secondsElapsed);
|
| H A D | TestList.h | 14 void Add (Test* test); 27 ListAdder(TestList& list, Test* test);
|
| H A D | DeferredTestResult.cpp | 31 DeferredTestResult::DeferredTestResult(char const* suite, char const* test) in DeferredTestResult() argument 33 , testName(test) in DeferredTestResult()
|
| H A D | TestMacros.h | 47 } test##Name##Instance; \ 49 UnitTest::ListAdder adder##Name (List, &test##Name##Instance); \ 75 } test##Fixture##Name##Instance; \ 77 UnitTest::ListAdder adder##Fixture##Name (List, &test##Fixture##Name##Instance); \
|
| /TaskScheduler/ThirdParty/UnitTest++/tests/ |
| H A D | TestTestList.cpp | 17 Test test("test"); in TEST() local 19 list.Add(&test); in TEST() 21 CHECK(list.GetHead() == &test); in TEST() 22 CHECK(test.m_nextTest == 0); in TEST() 43 Test test(""); in TEST() local 44 ListAdder adder(list, &test); in TEST() 46 CHECK(list.GetHead() == &test); in TEST() 47 CHECK(test.m_nextTest == 0); in TEST()
|
| H A D | RecordingReporter.h | 36 virtual void ReportTestStart(UnitTest::TestDetails const& test) in ReportTestStart() 41 strcpy(lastStartedSuite, test.suiteName); in ReportTestStart() 42 strcpy(lastStartedTest, test.testName); in ReportTestStart() 45 virtual void ReportFailure(UnitTest::TestDetails const& test, char const* failure) in ReportFailure() 50 strcpy(lastFailedFile, test.filename); in ReportFailure() 51 lastFailedLine = test.lineNumber; in ReportFailure() 52 strcpy(lastFailedSuite, test.suiteName); in ReportFailure() 53 strcpy(lastFailedTest, test.testName); in ReportFailure() 57 virtual void ReportTestFinish(UnitTest::TestDetails const& test, float testDuration) in ReportTestFinish() 62 strcpy(lastFinishedSuite, test.suiteName); in ReportTestFinish() [all …]
|
| H A D | TestTestRunner.cpp | 77 list.Add(&test); in TEST_FIXTURE() 87 list.Add(&test); in TEST_FIXTURE() 110 SlowTest test; in TEST_FIXTURE() local 111 list.Add(&test); in TEST_FIXTURE() 140 list.Add(&test); in TEST_FIXTURE() 188 SlowTest test; in TEST_FIXTURE() local 189 list.Add(&test); in TEST_FIXTURE() 197 SlowTest test; in TEST_FIXTURE() local 198 list.Add(&test); in TEST_FIXTURE() 206 SlowTest test; in TEST_FIXTURE() local [all …]
|
| H A D | TestTest.cpp | 102 Test test("test"); in TEST() local 103 CHECK(test.m_details.suiteName != NULL); in TEST() 104 CHECK_EQUAL("DefaultSuite", test.m_details.suiteName); in TEST() 109 Test test("test", "testSuite"); in TEST() local 110 CHECK(test.m_details.suiteName != NULL); in TEST() 111 CHECK_EQUAL("testSuite", test.m_details.suiteName); in TEST()
|
| H A D | TestUnitTestPP.cpp | 80 NoThrowTest test; in TEST() local 81 test.Run(); in TEST() 103 WrongThrowTest test; in TEST() local 104 test.Run(); in TEST()
|
| H A D | TestCompositeTestReporter.cpp | 31 virtual void ReportTestStart(TestDetails const& test) in ReportTestStart() 34 testStartDetails = &test; in ReportTestStart() 37 virtual void ReportFailure(TestDetails const& test, char const* failure) in ReportFailure() 40 failureDetails = &test; in ReportFailure() 44 virtual void ReportTestFinish(TestDetails const& test, float secondsElapsed) in ReportTestFinish() 47 testFinishDetails = &test; in ReportTestFinish()
|
| /TaskScheduler/SchedulerTests/Tests/ |
| H A D | AtomicTests.cpp | 50 static MT::Atomic32Base<int32> test = { 0 }; in SUITE() local 53 test.Store(13); in SUITE() 56 CHECK_EQUAL(13, test.Load()); in SUITE() 68 MT::Atomic32<int32> test; in SUITE() local 69 test.Store(OLD_VALUE); in SUITE() 70 CHECK(test.Load() == OLD_VALUE); in SUITE() 72 int prevValue = test.Exchange(VALUE); in SUITE() 73 CHECK(test.Load() == VALUE); in SUITE() 76 int nowValue = test.IncFetch(); in SUITE() 79 nowValue = test.DecFetch(); in SUITE() [all …]
|
| /TaskScheduler/ThirdParty/Boost.Context/asm/ |
| H A D | jump_i386_sysv_macho_gas.S | 36 test %ecx, %ecx 61 test %ecx, %ecx
|
| H A D | jump_i386_sysv_elf_gas.S | 37 test %ecx, %ecx 62 test %ecx, %ecx
|
| H A D | jump_x86_64_ms_pe_masm.asm | 110 ; test for flag preserve_fpu 111 test r9, r9 146 ; test for flag preserve_fpu 147 test r9, r9 171 ; test for indicator 172 test r10, r10
|
| H A D | jump_arm64_aapcs_elf_gas.S | 66 # Do not reinstate this test unless you fully understand what you 69 # # test if fpu env should be preserved 99 # # test if fpu env should be preserved
|
| H A D | jump_arm_aapcs_elf_gas.S | 55 @ test if fpu env should be preserved 72 @ test if fpu env should be preserved
|
| H A D | jump_i386_ms_pe_masm.asm | 64 ; test for flag preserve_fpu 65 test ecx, ecx 89 ; test for flag preserve_fpu 90 test ecx, ecx
|
| H A D | jump_arm_aapcs_macho_gas.S | 63 @ test if fpu env should be preserved 80 @ test if fpu env should be preserved
|
| /TaskScheduler/ThirdParty/UnitTest++/ |
| H A D | CMakeLists.txt | 31 # build the test runner 47 # add the test runner as a test
|