tests,tools: Update path to unix micropython executable.

These were missed by 47c84286e8

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George
2022-08-18 11:46:53 +10:00
parent 98bd7e33b3
commit cbc9f944c4
5 changed files with 5 additions and 5 deletions

View File

@@ -18,7 +18,7 @@ if os.name == "nt":
MICROPYTHON = os.getenv("MICROPY_MICROPYTHON", "../ports/windows/micropython.exe")
else:
CPYTHON3 = os.getenv("MICROPY_CPYTHON3", "python3")
MICROPYTHON = os.getenv("MICROPY_MICROPYTHON", "../ports/unix/micropython")
MICROPYTHON = os.getenv("MICROPY_MICROPYTHON", "../ports/unix/build-standard/micropython")
# For diff'ing test output
DIFF = os.getenv("MICROPY_DIFF", "diff -u")