Searched refs:GTEST_SKIP (Results 1 – 25 of 29) sorted by relevance
12
20 #ifndef GTEST_SKIP21 #define GTEST_SKIP GTEST_FAIL macro47 GTEST_SKIP() << "Skipping tests because capsicum support is not " in CheckCapsicumSupport()59 GTEST_SKIP() << "Debug sysctl, " << oid << ", enabled. " in CheckCapsicumSupport()
37 GTEST_SKIP() << "mq_open -> -ENOSYS";
131 GTEST_SKIP() << "requires non-root"; in FORK_TEST_F()
277 if (getuid() != 0) { GTEST_SKIP() << "requires root"; }
109 GTEST_SKIP() << "multi-threaded run clashes with signals"; in FORK_TEST()595 GTEST_SKIP() << "no different-architecture programs available"; in TEST()1198 GTEST_SKIP() << "kcmp(2) gives -ENOSYS"; in TEST()1427 GTEST_SKIP() << "memfd_create(2) gives -ENOSYS"; in TEST()
38 GTEST_SKIP() << "skipping single test"; in TEST()45 GTEST_SKIP() << "skipping all tests for this fixture"; in SetUp()
76 GTEST_SKIP(); in TEST_F()80 GTEST_SKIP() << "It is good practice to tell why you skip a test."; in TEST_F()85 GTEST_SKIP() << "It is good practice to tell why you skip a test."; in TEST_F()
39 void SetUp() override { GTEST_SKIP() << "Skipping the entire environment"; } in SetUp()
152 TEST(HasSkipTest, Test1) { GTEST_SKIP() << "Expected skip."; } in TEST()
1012 static void SetUpTestSuite() { GTEST_SKIP() << "Skip entire test suite"; } in SetUpTestSuite()
73 GTEST_SKIP() << devnode << " does not exist"; in check_environment()75 GTEST_SKIP() << devnode << in check_environment()78 GTEST_SKIP() << strerror(errno); in check_environment()89 GTEST_SKIP() << in check_environment()95 GTEST_SKIP() << "current user is not allowed to mount"; in check_environment()571 GTEST_SKIP() << "Test requires an unprivileged user"; in get_unprivileged_id()575 GTEST_SKIP() << "Test requires an unprivileged group"; in get_unprivileged_id()
124 GTEST_SKIP() << "Only root may clear MNT_NOSUID"; in TEST_P()126 GTEST_SKIP() << "Only root may set MNT_SUIDDIR"; in TEST_P()
60 GTEST_SKIP() << "Only root may use most mknod(2) variations"; in SetUp()103 GTEST_SKIP() << "Only root may use most mknod(2) variations"; in SetUp()
57 GTEST_SKIP() << "This test requires a privileged user"; in SetUp()
81 GTEST_SKIP() << in SetUp()
50 GTEST_SKIP() << "Only root may use " << reclaim_mib; in SetUp()
60 GTEST_SKIP() << "This test must be run as root"; in SetUp()
87 GTEST_SKIP() << in SetUp()
136 GTEST_SKIP() << in SetUp()185 GTEST_SKIP() << "MAXPHYS must be at least twice DFLTPHYS" in SetUp()188 GTEST_SKIP() << "MAXPHYS must be at least twice maxbcachebuf" in SetUp()865 GTEST_SKIP() << "Must lower m_maxwrite for this test"; in TEST_F()
52 GTEST_SKIP() << "This test requires a privileged user"; in SetUp()
379 GTEST_SKIP() << "This test requires a privileged user"; in TEST_P()
85 GTEST_SKIP() << in SetUp()
372 ### GTEST_SKIP {#GTEST_SKIP}374 `GTEST_SKIP()`385 Similar to assertions, `GTEST_SKIP` allows streaming a custom message into it.
278 execution at runtime with the `GTEST_SKIP()` macro. This is useful when you need282 `GTEST_SKIP()` can be used in individual test cases or in the `SetUp()` methods288 GTEST_SKIP() << "Skipping single test";295 GTEST_SKIP() << "Skipping all tests for this fixture";305 As with assertion macros, you can stream a custom message into `GTEST_SKIP()`.1009 fatal failures and `GTEST_SKIP()` has not been invoked. Finally, `TearDown()` is1014 not run due to a fatal failure or `GTEST_SKIP()`.
1730 #define GTEST_SKIP() GTEST_SKIP_("") macro