summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2022-08-18 11:46:53 +1000
committerDamien George <damien@micropython.org>2022-08-18 11:47:58 +1000
commitcbc9f944c4db6e3aee0bce0584b1eab674f0e5b9 (patch)
treecc488dc42b1f5e63a337f75a669a18512903d97d
parent98bd7e33b32fb00ad2900e71cbe5cc4938598a7a (diff)
tests,tools: Update path to unix micropython executable.
These were missed by 47c84286e8c8d9873e99f12711a683ecd6b9ca62 Signed-off-by: Damien George <damien@micropython.org>
-rwxr-xr-xtests/run-internalbench.py2
-rwxr-xr-xtests/run-multitests.py2
-rwxr-xr-xtests/run-perfbench.py2
-rwxr-xr-xtools/codestats.sh2
-rw-r--r--tools/gen-cpydiff.py2
5 files changed, 5 insertions, 5 deletions
diff --git a/tests/run-internalbench.py b/tests/run-internalbench.py
index 606fc3b77..0d2197850 100755
--- a/tests/run-internalbench.py
+++ b/tests/run-internalbench.py
@@ -16,7 +16,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")
def run_tests(pyb, test_dict):
diff --git a/tests/run-multitests.py b/tests/run-multitests.py
index d8a4a48fa..bd6cc70f7 100755
--- a/tests/run-multitests.py
+++ b/tests/run-multitests.py
@@ -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")
diff --git a/tests/run-perfbench.py b/tests/run-perfbench.py
index d70b99693..6f340968b 100755
--- a/tests/run-perfbench.py
+++ b/tests/run-perfbench.py
@@ -21,7 +21,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")
PYTHON_TRUTH = CPYTHON3
diff --git a/tools/codestats.sh b/tools/codestats.sh
index 09284a30d..744307399 100755
--- a/tools/codestats.sh
+++ b/tools/codestats.sh
@@ -23,7 +23,7 @@ AWK=awk
MAKE="make -j2"
# these are the binaries that are built; some have 2 or 3 depending on version
-bin_unix=ports/unix/micropython
+bin_unix=ports/unix/build-standard/micropython
bin_stm32=ports/stm32/build-PYBV10/firmware.elf
bin_barearm_1=ports/bare-arm/build/flash.elf
bin_barearm_2=ports/bare-arm/build/firmware.elf
diff --git a/tools/gen-cpydiff.py b/tools/gen-cpydiff.py
index d4c8a5736..46b3079ca 100644
--- a/tools/gen-cpydiff.py
+++ b/tools/gen-cpydiff.py
@@ -42,7 +42,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")
TESTPATH = "../tests/cpydiff/"
DOCPATH = "../docs/genrst/"