From e4b17ff3e80726d903d75161cc061820d606e0db Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Wed, 18 Jun 2014 23:50:33 +0300 Subject: Add Rust to main test suite. --- run_tests.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'run_tests.py') diff --git a/run_tests.py b/run_tests.py index 5820276..16f621b 100755 --- a/run_tests.py +++ b/run_tests.py @@ -188,6 +188,10 @@ def run_tests(): valatests = gather_tests('test cases/vala') else: valatests = [] + if shutil.which('rustc'): + rusttests = gather_tests('test cases/rust') + else: + rusttests = [] if not environment.is_windows(): objctests = gather_tests('test cases/objc') else: @@ -229,6 +233,11 @@ def run_tests(): [run_and_log(logfile, t) for t in valatests] else: print('\nNot running Vala tests.\n') + if len(rusttests) > 0: + print('\nRunning Rust tests.\n') + [run_and_log(logfile, t) for t in rusttests] + else: + print('\nNot running Rust tests.\n') if len(objctests) > 0: print('\nRunning extra language tests.\n') [run_and_log(logfile, t) for t in objctests] -- cgit v1.1