diff options
| author | Damien George <damien@micropython.org> | 2022-08-11 12:40:23 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2022-08-11 13:34:34 +1000 |
| commit | d53c3b6ade01650f88972ccf7e3002d2b5a84ff6 (patch) | |
| tree | 9fce812fa31258da30e982f09388fa20450835e6 /tests | |
| parent | c7aa6a2c73854af9c0e9561e9213ef20abccf246 (diff) | |
unix/variants: Remove variant suffix from executable filename.
The executable now lives in the build directory, and since the build
directory already contains the variant name there is no need to also add
it to the executable.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests')
| -rwxr-xr-x | tests/run-natmodtests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run-natmodtests.py b/tests/run-natmodtests.py index 9130e00d6..16bb46922 100755 --- a/tests/run-natmodtests.py +++ b/tests/run-natmodtests.py @@ -14,7 +14,7 @@ import pyboard # Paths for host executables CPYTHON3 = os.getenv("MICROPY_CPYTHON3", "python3") -MICROPYTHON = os.getenv("MICROPY_MICROPYTHON", "../ports/unix/build-coverage/micropython-coverage") +MICROPYTHON = os.getenv("MICROPY_MICROPYTHON", "../ports/unix/build-coverage/micropython") NATMOD_EXAMPLE_DIR = "../examples/natmod/" |
