diff options
Diffstat (limited to 'testsuite.py')
| -rw-r--r-- | testsuite.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/testsuite.py b/testsuite.py index 20974d0..18af399 100644 --- a/testsuite.py +++ b/testsuite.py @@ -1913,7 +1913,8 @@ def test_all_no(conf): 'make scriptconfig', so kinda slow even in speedy mode.""" # TODO: Support speedy mode for running the script - shell("make scriptconfig SCRIPT=Kconfiglib/examples/allnoconfig.py") + shell("make scriptconfig SCRIPT=Kconfiglib/examples/allnoconfig.py " + "PYTHONCMD='{0}'".format(sys.executable)) shell("mv .config ._config") if speedy_mode: shell("scripts/kconfig/conf --allnoconfig Kconfig") @@ -1927,7 +1928,8 @@ def test_all_no_simpler(conf): 'make scriptconfig', so kinda slow even in speedy mode.""" # TODO: Support speedy mode for running the script - shell("make scriptconfig SCRIPT=Kconfiglib/examples/allnoconfig_simpler.py") + shell("make scriptconfig SCRIPT=Kconfiglib/examples/allnoconfig_simpler.py " + "PYTHONCMD='{0}'".format(sys.executable)) shell("mv .config ._config") if speedy_mode: shell("scripts/kconfig/conf --allnoconfig Kconfig") @@ -1941,7 +1943,8 @@ def test_all_yes(conf): 'make scriptconfig', so kinda slow even in speedy mode.""" # TODO: Support speedy mode for running the script - shell("make scriptconfig SCRIPT=Kconfiglib/examples/allyesconfig.py") + shell("make scriptconfig SCRIPT=Kconfiglib/examples/allyesconfig.py " + "PYTHONCMD='{0}'".format(sys.executable)) shell("mv .config ._config") if speedy_mode: shell("scripts/kconfig/conf --allyesconfig Kconfig") |
