From b9aa0da402fe9ec0b1074602e0067cd2e49b75b0 Mon Sep 17 00:00:00 2001 From: Akos Kiss Date: Tue, 14 Aug 2018 08:25:13 +0200 Subject: [PATCH] Fix unpacking mismatch in run-tests.py (#2466) JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu --- tools/run-tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/run-tests.py b/tools/run-tests.py index 5f937a5c8..099a01793 100755 --- a/tools/run-tests.py +++ b/tools/run-tests.py @@ -260,7 +260,7 @@ def iterate_test_runner_jobs(jobs, options): for job in jobs: ret_build, build_dir_path = create_binary(job, options) if ret_build: - yield job, ret_build, build_dir_path, None + yield job, ret_build, None if build_dir_path in tested_paths: sys.stderr.write('(skipping: already tested with %s)\n' % build_dir_path)