diff options
Diffstat (limited to 'tools/test.py')
-rwxr-xr-x | tools/test.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/test.py b/tools/test.py index 91557e0fd..5344e7b62 100755 --- a/tools/test.py +++ b/tools/test.py @@ -5,6 +5,7 @@ import os import sys from check_output_test import check_output_test from util import executable_suffix, run, build_path +from util_test import util_test def check_exists(filename): @@ -23,6 +24,9 @@ def main(argv): print "Usage: tools/test.py [build_dir]" sys.exit(1) + # Internal tools testing + util_test() + test_cc = os.path.join(build_dir, "test_cc" + executable_suffix) check_exists(test_cc) run([test_cc]) |