tests/run-bench-tests: Update locations of executables, now in ports/.
This commit is contained in:
parent
19f1b39d6f
commit
0708dd495f
|
@ -13,10 +13,10 @@ from collections import defaultdict
|
|||
# to the correct executable.
|
||||
if os.name == 'nt':
|
||||
CPYTHON3 = os.getenv('MICROPY_CPYTHON3', 'python3.exe')
|
||||
MICROPYTHON = os.getenv('MICROPY_MICROPYTHON', '../windows/micropython.exe')
|
||||
MICROPYTHON = os.getenv('MICROPY_MICROPYTHON', '../ports/windows/micropython.exe')
|
||||
else:
|
||||
CPYTHON3 = os.getenv('MICROPY_CPYTHON3', 'python3')
|
||||
MICROPYTHON = os.getenv('MICROPY_MICROPYTHON', '../unix/micropython')
|
||||
MICROPYTHON = os.getenv('MICROPY_MICROPYTHON', '../ports/unix/micropython')
|
||||
|
||||
def run_tests(pyb, test_dict):
|
||||
test_count = 0
|
||||
|
|
Loading…
Reference in New Issue