aboutsummaryrefslogtreecommitdiff
path: root/run_project_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2019-07-08 20:40:41 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2019-07-09 22:03:58 +0300
commit4b1ab9679579889abd1a66de0737652c9faffbf1 (patch)
tree142a01d14974b2add2f525912b5d6dcd7e0bfd8c /run_project_tests.py
parent716140ddb4f108dac2c2395e24e9ca17d68593d5 (diff)
downloadmeson-4b1ab9679579889abd1a66de0737652c9faffbf1.zip
meson-4b1ab9679579889abd1a66de0737652c9faffbf1.tar.gz
meson-4b1ab9679579889abd1a66de0737652c9faffbf1.tar.bz2
Add command line argument to skip unit tests.
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-xrun_project_tests.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py
index 3bd3253..d127e65 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -870,6 +870,8 @@ if __name__ == '__main__':
choices=backendlist)
parser.add_argument('--failfast', action='store_true',
help='Stop running if test case fails')
+ parser.add_argument('--no-unittests', action='store_true',
+ help='Not used, only here to simplify run_tests.py')
parser.add_argument('--only', help='name of test(s) to run', nargs='+')
options = parser.parse_args()
setup_commands(options.backend)