Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: third_party/lit/tests/Inputs/googletest-format/DummySubDir/OneTest

Issue 1663053003: [fusl] Add llvm's lit tool to third_party (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: move down a dir Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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,))
« no previous file with comments | « third_party/lit/tests/Inputs/exec-discovery/lit.site.cfg ('k') | third_party/lit/tests/Inputs/googletest-format/lit.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698