diff options
| author | stijn <stijn@ignitron.net> | 2022-11-29 16:58:21 +0100 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2022-12-13 17:18:53 +1100 |
| commit | 9c7ff876439309e1b89a9fb0cb6880d525217425 (patch) | |
| tree | d5a546aeb7e6a5283382d0d71f5cdd2ba178980c /tests/run-tests.py | |
| parent | db19ee7e15309a7b59756d5176ff20e5ade8dfa1 (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-tests.py')
| -rwxr-xr-x | tests/run-tests.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py index 35740318e..02cad5aed 100755 --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -30,9 +30,11 @@ def base_path(*p): # to the correct executable. if os.name == "nt": CPYTHON3 = os.getenv("MICROPY_CPYTHON3", "python") - MICROPYTHON = os.getenv("MICROPY_MICROPYTHON", base_path("../ports/windows/micropython.exe")) + MICROPYTHON = os.getenv( + "MICROPY_MICROPYTHON", base_path("../ports/windows/build-standard/micropython.exe") + ) # mpy-cross is only needed if --via-mpy command-line arg is passed - MPYCROSS = os.getenv("MICROPY_MPYCROSS", base_path("../mpy-cross/mpy-cross.exe")) + MPYCROSS = os.getenv("MICROPY_MPYCROSS", base_path("../mpy-cross/build/mpy-cross.exe")) else: CPYTHON3 = os.getenv("MICROPY_CPYTHON3", "python3") MICROPYTHON = os.getenv( |
