/freebsd/contrib/capsicum-test/ |
H A D | capsicum-test-main.cc | 20 #ifndef GTEST_SKIP 21 #define GTEST_SKIP GTEST_FAIL macro 47 GTEST_SKIP() << "Skipping tests because capsicum support is not " in CheckCapsicumSupport() 59 GTEST_SKIP() << "Debug sysctl, " << oid << ", enabled. " in CheckCapsicumSupport()
|
H A D | mqueue.cc | 37 GTEST_SKIP() << "mq_open -> -ENOSYS";
|
H A D | fexecve.cc | 131 GTEST_SKIP() << "requires non-root"; in FORK_TEST_F()
|
H A D | capsicum-test.h | 277 if (getuid() != 0) { GTEST_SKIP() << "requires root"; }
|
H A D | sctp.cc | 65 GTEST_SKIP() << "socket(..., IPPROTO_SCTP) -> EPROTONOSUPPORT"; in TEST()
|
H A D | linux.cc | 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()
|
/freebsd/contrib/googletest/googletest/test/ |
H A D | gtest_skip_test.cc | 38 GTEST_SKIP() << "skipping single test"; in TEST() 45 GTEST_SKIP() << "skipping all tests for this fixture"; in SetUp()
|
H A D | gtest_xml_output_unittest_.cc | 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()
|
H A D | gtest_skip_in_environment_setup_test.cc | 39 void SetUp() override { GTEST_SKIP() << "Skipping the entire environment"; } in SetUp()
|
H A D | googletest-failfast-unittest_.cc | 152 TEST(HasSkipTest, Test1) { GTEST_SKIP() << "Expected skip."; } in TEST()
|
H A D | googletest-output-test_.cc | 1012 static void SetUpTestSuite() { GTEST_SKIP() << "Skip entire test suite"; } in SetUpTestSuite()
|
/freebsd/tests/sys/fs/fusefs/ |
H A D | utils.cc | 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()
|
H A D | mount.cc | 124 GTEST_SKIP() << "Only root may clear MNT_NOSUID"; in TEST_P() 126 GTEST_SKIP() << "Only root may set MNT_SUIDDIR"; in TEST_P()
|
H A D | mknod.cc | 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()
|
H A D | default_permissions_privileged.cc | 57 GTEST_SKIP() << "This test requires a privileged user"; in SetUp()
|
H A D | fsyncdir.cc | 81 GTEST_SKIP() << in SetUp()
|
H A D | forget.cc | 49 GTEST_SKIP() << "Only root may use " << reclaim_mib; in SetUp()
|
H A D | allow_other.cc | 57 GTEST_SKIP() << "This test must be run as root"; in SetUp()
|
H A D | fsync.cc | 87 GTEST_SKIP() << in SetUp()
|
H A D | write.cc | 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()
|
H A D | last_local_modify.cc | 379 GTEST_SKIP() << "This test requires a privileged user"; in TEST_P()
|
H A D | nfs.cc | 52 GTEST_SKIP() << "This test requires a privileged user"; in SetUp()
|
/freebsd/contrib/googletest/docs/reference/ |
H A D | testing.md | 372 ### GTEST_SKIP {#GTEST_SKIP} 374 `GTEST_SKIP()` 385 Similar to assertions, `GTEST_SKIP` allows streaming a custom message into it.
|
/freebsd/contrib/googletest/docs/ |
H A D | advanced.md | 278 execution at runtime with the `GTEST_SKIP()` macro. This is useful when you need 282 `GTEST_SKIP()` can be used in individual test cases or in the `SetUp()` methods 288 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()` is 1014 not run due to a fatal failure or `GTEST_SKIP()`.
|
/freebsd/contrib/googletest/googletest/include/gtest/ |
H A D | gtest.h | 1730 #define GTEST_SKIP() GTEST_SKIP_("") macro
|