diff options
Diffstat (limited to 'tests/run-perfbench.py')
| -rwxr-xr-x | tests/run-perfbench.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/run-perfbench.py b/tests/run-perfbench.py index f87169d49..578f975bb 100755 --- a/tests/run-perfbench.py +++ b/tests/run-perfbench.py @@ -18,7 +18,9 @@ prepare_script_for_target = __import__("run-tests").prepare_script_for_target # Paths for host executables if os.name == "nt": CPYTHON3 = os.getenv("MICROPY_CPYTHON3", "python3.exe") - MICROPYTHON = os.getenv("MICROPY_MICROPYTHON", "../ports/windows/micropython.exe") + MICROPYTHON = os.getenv( + "MICROPY_MICROPYTHON", "../ports/windows/build-standard/micropython.exe" + ) else: CPYTHON3 = os.getenv("MICROPY_CPYTHON3", "python3") MICROPYTHON = os.getenv("MICROPY_MICROPYTHON", "../ports/unix/build-standard/micropython") |
