summaryrefslogtreecommitdiff
path: root/tests/run-internalbench.py
diff options
context:
space:
mode:
authorstijn <stijn@ignitron.net>2022-11-29 16:58:21 +0100
committerDamien George <damien@micropython.org>2022-12-13 17:18:53 +1100
commit9c7ff876439309e1b89a9fb0cb6880d525217425 (patch)
treed5a546aeb7e6a5283382d0d71f5cdd2ba178980c /tests/run-internalbench.py
parentdb19ee7e15309a7b59756d5176ff20e5ade8dfa1 (diff)
all: Keep msvc build output in build/ directories.
This follow the change made for Makefile-based projects in b2e82402.
Diffstat (limited to 'tests/run-internalbench.py')
-rwxr-xr-xtests/run-internalbench.py4
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")