We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c5a4d10 + 482941a commit 58bac00Copy full SHA for 58bac00
workspace_tools/build_travis.py
@@ -134,7 +134,14 @@ def run_test_linking(dry_run):
134
if os.system(cmdline) != 0:
135
sys.exit(1)
136
137
+def run_test_testsuite(dry_run):
138
+ cmdline = "python workspace_tools/singletest.py --version"
139
+ print "Executing: " + cmdline
140
+ if not dry_run:
141
+ if os.system(cmdline) != 0:
142
+ sys.exit(1)
143
144
if __name__ == "__main__":
145
run_builds("-s" in sys.argv)
146
run_test_linking("-s" in sys.argv)
147
+ run_test_testsuite("-s" in sys.argv)
0 commit comments