8000 tests/run-bench-tests: Update locations of executables, now in ports/. · rlucia/micropython@0708dd4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0708dd4

Browse files
committed
tests/run-bench-tests: Update locations of executables, now in ports/.
1 parent 19f1b39 commit 0708dd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/run-bench-tests

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ from collections import defaultdict
1313
# to the correct executable.
1414
if os.name == 'nt':
1515
CPYTHON3 = os.getenv('MICROPY_CPYTHON3', 'python3.exe')
16-
MICROPYTHON = os.getenv('MICROPY_MICROPYTHON', '../windows/micropython.exe')
16+
MICROPYTHON = os.getenv('MICROPY_MICROPYTHON', '../ports/windows/micropython.exe')
1717
else:
1818
CPYTHON3 = os.getenv('MICROPY_CPYTHON3', 'python3')
19-
MICROPYTHON = os.getenv('MICROPY_MICROPYTHON', '../unix/micropython')
19+
MICROPYTHON = os.getenv('MICROPY_MICROPYTHON', '../ports/unix/micropython')
2020

2121
def run_tests(pyb, test_dict):
2222
test_count = 0

0 commit comments

Comments
 (0)
0