summaryrefslogtreecommitdiff
path: root/tests/run-tests.py
diff options
context:
space:
mode:
authorDaniel Jour <d.jour@steiner.de>2022-08-03 16:29:55 +0200
committerDamien George <damien@micropython.org>2022-08-11 13:34:04 +1000
commitc7aa6a2c73854af9c0e9561e9213ef20abccf246 (patch)
tree402261b0c16990c110520c355e68766adbfb17f4 /tests/run-tests.py
parent409995ac6828dc6bb70fcbe0bf9f26fd087ed22b (diff)
tests/run-tests.py: Provide better default MPYCROSS value for Windows.
Diffstat (limited to 'tests/run-tests.py')
-rwxr-xr-xtests/run-tests.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/run-tests.py b/tests/run-tests.py
index 8e9bd8431..ca7941f62 100755
--- a/tests/run-tests.py
+++ b/tests/run-tests.py
@@ -31,18 +31,20 @@ def base_path(*p):
if os.name == "nt":
CPYTHON3 = os.getenv("MICROPY_CPYTHON3", "python")
MICROPYTHON = os.getenv("MICROPY_MICROPYTHON", base_path("../ports/windows/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"))
else:
CPYTHON3 = os.getenv("MICROPY_CPYTHON3", "python3")
MICROPYTHON = os.getenv(
"MICROPY_MICROPYTHON", base_path("../ports/unix/build-standard/micropython")
)
+ # mpy-cross is only needed if --via-mpy command-line arg is passed
+ MPYCROSS = os.getenv("MICROPY_MPYCROSS", base_path("../mpy-cross/build/mpy-cross"))
# Use CPython options to not save .pyc files, to only access the core standard library
# (not site packages which may clash with u-module names), and improve start up time.
CPYTHON3_CMD = [CPYTHON3, "-BS"]
-# mpy-cross is only needed if --via-mpy command-line arg is passed
-MPYCROSS = os.getenv("MICROPY_MPYCROSS", base_path("../mpy-cross/build/mpy-cross"))
# For diff'ing test output
DIFF = os.getenv("MICROPY_DIFF", "diff -u")