Test compilation failure on Windows/MinGW
In MSYS2/MinGW, I get the following compiler error:
C:/msys64/home/user/openscenario1_engine/engine/tests/Storyboard/MotionControlAction/LaneChangeActionTest.cpp:55:58: error: 'KilledBySignal' is not a member of
'testing'
55 | ASSERT_EXIT(root_node_->distributeData(), ::testing::KilledBySignal(SIGSEGV),".*");
The affected test is using ::testing::KilledBySignal()
which is not available on Windows platform. See gtest header file.