Index: mojo/tools/get_test_list.py |
diff --git a/mojo/tools/get_test_list.py b/mojo/tools/get_test_list.py |
index c59602c10244b174054ca4e0120d7a7db2ceaa19..4a45883929345502caf5509e54443f436797a8b1 100755 |
--- a/mojo/tools/get_test_list.py |
+++ b/mojo/tools/get_test_list.py |
@@ -117,9 +117,17 @@ def GetTestList(config, verbose_count=0): |
if (target_os == Config.OS_LINUX and |
config.sanitizer != Config.SANITIZER_ASAN and |
ShouldRunTest(Config.TEST_TYPE_DEFAULT, Config.TEST_TYPE_UNIT, "go")): |
- AddEntry("Go unit tests", |
+ # Go system tests: |
+ AddEntry("Go system tests", |
[os.path.join(build_dir, "obj", "mojo", "go", "system_test")]) |
+ # Pure Go unit tests: |
+ assert paths.go_tool_path is not None |
+ go_tool = paths.go_tool_path |
+ AddEntry("Go unit tests", |
+ ["python", os.path.join("mojo", "tools", "run_pure_go_tests.py"), |
+ go_tool, os.path.join("mojo", "tools", "data", "gotests")]) |
+ |
# Python unit tests: |
if ShouldRunTest(Config.TEST_TYPE_DEFAULT, Config.TEST_TYPE_UNIT, "python"): |
AddEntry("Python unit tests", |