From: 이상규/동작제어Lab(SR)/Principal Engineer/삼성전자 Date: Mon, 26 Nov 2018 05:56:46 +0000 (+0900) Subject: Fix wrong variable name in test_driver.sh (#3699) X-Git-Tag: 0.3~330 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f9bf31e1af887be9e76ae3e890c51b75da656560;p=platform%2Fcore%2Fml%2Fnnfw.git Fix wrong variable name in test_driver.sh (#3699) I've found report_dir does not pass properly during investigation of #3420. Then, I found a typo of a vaiable name in test_driver.sh script. Signed-off-by: Sanggyu Lee --- diff --git a/tools/test_driver/test_driver.sh b/tools/test_driver/test_driver.sh index 077d126..30b5ea2 100755 --- a/tools/test_driver/test_driver.sh +++ b/tools/test_driver/test_driver.sh @@ -288,7 +288,7 @@ fi # Run benchmark/acl/benchmark_googlenet, mobilenet and inception_v3 if [ "$BENCHMARK_ACL_ON" == "true" ]; then $TEST_DRIVER_DIR/run_benchmark_acl.sh \ - --reportdir=$AREPORT_DIR/benchmark \ + --reportdir=$REPORT_DIR/benchmark \ --bindir=$ARTIFACT_PATH/Product/out/bin fi