tests/run-perfbench.py: Fix native feature check.

This was broken by 8459f538eb

Signed-off-by: Damien George <damien@micropython.org>
pull/7256/head
Damien George 2021-05-11 23:45:36 +10:00
rodzic 70f50c46cc
commit 18d984c8b2
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -85,7 +85,7 @@ def run_benchmark_on_target(target, script):
def run_benchmarks(target, param_n, param_m, n_average, test_list):
skip_complex = run_feature_test(target, "complex") != "complex"
skip_native = run_feature_test(target, "native_check") != ""
skip_native = run_feature_test(target, "native_check") != "native"
for test_file in sorted(test_list):
print(test_file + ": ", end="")