From ccfe1f1cd6e6060aa480ba949526b953e833c534 Mon Sep 17 00:00:00 2001 From: Evgeny Gavrin Date: Wed, 19 Aug 2015 11:07:35 +0000 Subject: [PATCH] Remove 'if engine is executable' check. JerryScript-DCO-1.0-Signed-off-by: Evgeny Gavrin e.gavrin@samsung.com --- tools/run-perf-test.sh | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tools/run-perf-test.sh b/tools/run-perf-test.sh index 1c13ac09d..c60682ae7 100755 --- a/tools/run-perf-test.sh +++ b/tools/run-perf-test.sh @@ -40,16 +40,6 @@ REPEATS="$3" TIMEOUT="$4" BENCH_FOLDER="$5" -if [ ! -x "${ENGINE_OLD}" ] -then - exit_err "\"${ENGINE_OLD}\" is not an executable file..." -fi - -if [ ! -x "${ENGINE_NEW}" ] -then - exit_err "\"${ENGINE_NEW}\" is not an executable file..." -fi - if [ "${REPEATS}" -lt 1 ] then exit_err "REPEATS must be greater than 0"