Index: third_party/lit/tests/Inputs/googletest-format/DummySubDir/OneTest |
diff --git a/third_party/lit/tests/Inputs/googletest-format/DummySubDir/OneTest b/third_party/lit/tests/Inputs/googletest-format/DummySubDir/OneTest |
new file mode 100755 |
index 0000000000000000000000000000000000000000..dd49f025b1f2e2e85de60b83251ce65e8e0ecff0 |
--- /dev/null |
+++ b/third_party/lit/tests/Inputs/googletest-format/DummySubDir/OneTest |
@@ -0,0 +1,36 @@ |
+#!/usr/bin/env python |
+ |
+import sys |
+ |
+if len(sys.argv) != 2: |
+ raise ValueError("unexpected number of args") |
+ |
+if sys.argv[1] == "--gtest_list_tests": |
+ print("""\ |
+FirstTest. |
+ subTestA |
+ subTestB |
+ParameterizedTest/0. |
+ subTest |
+ParameterizedTest/1. |
+ subTest""") |
+ sys.exit(0) |
+elif not sys.argv[1].startswith("--gtest_filter="): |
+ raise ValueError("unexpected argument: %r" % (sys.argv[1])) |
+ |
+test_name = sys.argv[1].split('=',1)[1] |
+if test_name == 'FirstTest.subTestA': |
+ print('I am subTest A, I PASS') |
+ print('[ PASSED ] 1 test.') |
+ sys.exit(0) |
+elif test_name == 'FirstTest.subTestB': |
+ print('I am subTest B, I FAIL') |
+ print('And I have two lines of output') |
+ sys.exit(1) |
+elif test_name in ('ParameterizedTest/0.subTest', |
+ 'ParameterizedTest/1.subTest'): |
+ print('I am a parameterized test, I also PASS') |
+ print('[ PASSED ] 1 test.') |
+ sys.exit(0) |
+else: |
+ raise SystemExit("error: invalid test name: %r" % (test_name,)) |