diff options
Diffstat (limited to 'tests/run-internalbench.py')
| -rwxr-xr-x | tests/run-internalbench.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/run-internalbench.py b/tests/run-internalbench.py index 0d2197850..b71b38cab 100755 --- a/tests/run-internalbench.py +++ b/tests/run-internalbench.py @@ -13,7 +13,9 @@ from collections import defaultdict # to the correct executable. 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") |
