Index: tools/run-tests.py |
diff --git a/tools/run-tests.py b/tools/run-tests.py |
index 4167a555b4d610b456b07994959890bd53f99860..39e7efc06b11464b1a2e96226d14611f4ec3bc71 100755 |
--- a/tools/run-tests.py |
+++ b/tools/run-tests.py |
@@ -339,6 +339,10 @@ def Main(): |
code = subprocess.call( |
[sys.executable, join(workspace, "tools", "presubmit.py")]) |
exit_code = code |
+ code = subprocess.call( |
+ [sys.executable, join(workspace, "tools", "generate-runtime-tests.py"), |
+ "check"]) |
+ exit_code = exit_code or code |
suite_paths = utils.GetSuitePaths(join(workspace, "test")) |