From 03eb577a40c7011cea11b8e731cac8d52ea7b403 Mon Sep 17 00:00:00 2001 From: Joost Rijneveld Date: Wed, 10 Apr 2019 16:37:02 +0200 Subject: [PATCH] Pass list instead of single command to subprocess --- test/test_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_common.py b/test/test_common.py index b303df5d..d57ad4a5 100644 --- a/test/test_common.py +++ b/test/test_common.py @@ -17,7 +17,7 @@ def test_common(): primitive = re.sub(r"\.c$", "", d) binname = os.path.join('..', 'bin', 'test_'+primitive) helpers.make(binname) - helpers.run_subprocess(binname) + helpers.run_subprocess([binname]) if __name__ == '__main__':