search for: unittestimpl

Displaying 5 results from an estimated 5 matches for "unittestimpl".

2018 Sep 21
2
msan test failures
...0x7aaeb8 in testing::internal::UnitTestOptions::MatchesFilter(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, char const*) /home/blitz/projects/llvm/utils/unittest/googletest/src/gtest.cc:483:9 #6 0x7aaeb8 in testing::internal::UnitTestImpl::GetTestCase(char const*, char const*, void (*)(), void (*)()) /home/blitz/projects/llvm/utils/unittest/googletest/src/gtest.cc:4519 #7 0x77250b in testing::internal::UnitTestImpl::AddTestInfo(void (*)(), void (*)(), testing::TestInfo*) /home/blitz/projects/llvm/utils/unittest/googletest/src/gt...
2014 Jun 30
3
[LLVMdev] LLD dynamic compilation
...Info::Run (this=0xa1d6f0) at /home/rengolin/devel/llvm/src/llvm/utils/unittest/googletest/src/gtest.cc:2309 #10 0x000000000047adc5 in testing::TestCase::Run (this=0xa1cfe0) at /home/rengolin/devel/llvm/src/llvm/utils/unittest/googletest/src/gtest.cc:2416 #11 0x000000000047fd40 in testing::internal::UnitTestImpl::RunAllTests (this=0xa0f140) at /home/rengolin/devel/llvm/src/llvm/utils/unittest/googletest/src/gtest.cc:4205 #12 0x000000000047fff2 in HandleExceptionsInMethodIfSupported<testing::internal::UnitTestImpl, bool> (location=<synthetic pointer>, method=(bool (testing::internal::UnitTes...
2020 Sep 13
2
libva-utils test siuite is crashing in nouveau sriver
...st.cc:2759 impl = <optimized out> repeater = <optimized out> start = <optimized out> impl = <optimized out> repeater = <optimized out> start = <optimized out> i = <optimized out> #10 testing::internal::UnitTestImpl::RunAllTests (this=<optimized out>) at ../test/gtest/src/gtest.cc:4649 test_index = 4 start = 1600019826482 i = 0 should_shard = <optimized out> has_tests_to_run = true repeater = 0x55b48d91add0 forever = <optimized out>...
2014 Jun 30
2
[LLVMdev] LLD dynamic compilation
Folks, I'm having a look at LLD and I need some guidance... I know it's not production ready for x86 and ARM (the idea is to make it so). My steps: I've added it to tools/lld and ran CMake again (on x86_64) on a standard release build (static linking). It works, builds but I see one unit test error: Note: Google Test filter = InputGraphTest.Observer [==========] Running 1 test from
2009 Jan 27
3
[LLVMdev] [PATCH] llvm/llvm-gcc broken on mingw32
...--- Index: utils/unittest/googletest/gtest.cc =================================================================== --- utils/unittest/googletest/gtest.cc (revision 63080) +++ utils/unittest/googletest/gtest.cc (working copy) @@ -1993,7 +1993,7 @@ if (!HasSameFixtureClass()) return; internal::UnitTestImpl* const impl = internal::GetUnitTestImpl(); -#ifdef GTEST_OS_WINDOWS +#if defined(GTEST_OS_WINDOWS) && !defined(__MINGW__) && !defined(__MINGW32__) // We are on Windows. impl->os_stack_trace_getter()->UponLeavingGTest(); __try { @@ -2025,7 +2025,7 @@ AddExceptionT...