summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/GoogleTest/skip_test.cpp
diff options
context:
space:
mode:
authorAlexander Stein <alexander.stein@mailbox.org>2020-04-08 18:40:00 (GMT)
committerBrad King <brad.king@kitware.com>2020-04-10 13:43:39 (GMT)
commit89a843d6ea35a2d0704a5fbc13858e5b84546744 (patch)
tree2d8b45174e81adc93650e3dd767f0ac53caae99d /Tests/RunCMake/GoogleTest/skip_test.cpp
parent98868dad1c00ceb60eec81b9e20d684ff3c61a85 (diff)
downloadCMake-89a843d6ea35a2d0704a5fbc13858e5b84546744.zip
CMake-89a843d6ea35a2d0704a5fbc13858e5b84546744.tar.gz
CMake-89a843d6ea35a2d0704a5fbc13858e5b84546744.tar.bz2
GoogleTest: Add testcase for skipped tests
This simply runs a mocked test case which uses the prefix for signaling a skipped test. CTest's output is checked for a skipped test result.
Diffstat (limited to 'Tests/RunCMake/GoogleTest/skip_test.cpp')
-rw-r--r--Tests/RunCMake/GoogleTest/skip_test.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/Tests/RunCMake/GoogleTest/skip_test.cpp b/Tests/RunCMake/GoogleTest/skip_test.cpp
new file mode 100644
index 0000000..2bc9fe1
--- /dev/null
+++ b/Tests/RunCMake/GoogleTest/skip_test.cpp
@@ -0,0 +1,18 @@
+#include <iostream>
+#include <string>
+
+int main(int argc, char** argv)
+{
+ // Note: GoogleTest.cmake doesn't actually depend on Google Test as such;
+ // it only requires that we produces output in the expected format when
+ // invoked with --gtest_list_tests. Thus, we fake that here. This allows us
+ // to test the module without actually needing Google Test.
+ if (argc > 1 && std::string(argv[1]) == "--gtest_list_tests") {
+ std::cout << "skip_test." << std::endl;
+ std::cout << " test1" << std::endl;
+ return 0;
+ }
+
+ std::cout << "[ SKIPPED ] skip_test.test1" << std::endl;
+ return 0;
+}