From 3c7c463563ca11033e25a01c62aa616ec1b4cdee Mon Sep 17 00:00:00 2001 From: Ajax Date: Mon, 10 Apr 2017 14:38:30 +0200 Subject: TestAll: add support for other executable --- test/utils/testset.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/utils/testset.py') diff --git a/test/utils/testset.py b/test/utils/testset.py index e1df01a4..29a4e5d0 100644 --- a/test/utils/testset.py +++ b/test/utils/testset.py @@ -153,7 +153,8 @@ class TestSet(object): os.chdir(test.base_dir) # Launch test - testpy = subprocess.Popen(([sys.executable] + + executable = test.executable if test.executable else sys.executable + testpy = subprocess.Popen(([executable] + init_args + test.command_line), stdout=subprocess.PIPE, stderr=subprocess.PIPE) -- cgit 1.4.1