Lines Matching full:switch
323 // Tests that death test macros expand to code which interacts well with switch
326 // Microsoft compiler usually complains about switch statements without
333 switch (0)
335 ASSERT_DEATH(_exit(1), "") << "exit in default switch handler";
337 switch (0)
339 EXPECT_DEATH(_exit(1), "") << "exit in switch case";
1269 // well with switch statements.
1271 // Microsoft compiler usually complains about switch statements without
1278 switch (0)
1281 << "exit in default switch handler";
1283 switch (0)
1285 EXPECT_DEATH_IF_SUPPORTED(_exit(1), "") << "exit in switch case";