summaryrefslogtreecommitdiff
path: root/tests/run-bench-tests
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-09-08 12:11:15 +1000
committerDamien George <damien.p.george@gmail.com>2017-09-08 12:11:15 +1000
commit0708dd495f19ac935641a914358470b1385c3baa (patch)
treef49f781a71eec9162f3f9527cd3d63e4975ac6be /tests/run-bench-tests
parent19f1b39d6ff723729e993c2559c5eb8d62215d39 (diff)
tests/run-bench-tests: Update locations of executables, now in ports/.
Diffstat (limited to 'tests/run-bench-tests')
-rwxr-xr-xtests/run-bench-tests4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/run-bench-tests b/tests/run-bench-tests
index d48b4b7ec..f4a6776cb 100755
--- a/tests/run-bench-tests
+++ b/tests/run-bench-tests
@@ -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