From 0708dd495f19ac935641a914358470b1385c3baa Mon Sep 17 00:00:00 2001
From: Damien George <damien.p.george@gmail.com>
Date: Fri, 8 Sep 2017 12:11:15 +1000
Subject: [PATCH] tests/run-bench-tests: Update locations of executables, now
 in ports/.

---
 tests/run-bench-tests | 4 ++--
 1 file 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
-- 
GitLab