If I have a test case as follows
TEST(one, test_one) {
vector<thread> threads
// ... initialize threads
}
and somewhere in those threads an assertion fails, how do I stop all threads and terminate? because it seems like the function keeps executing as of now..