From: Jeffrin Jose T Date: Mon, 23 Apr 2018 14:10:22 +0000 (+0530) Subject: selftests:firmware: fixes a call to a wrong function name X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=0183df0baf7912b9fae16b5281f1eabbb4572b3d;p=openwrt%2Fstaging%2Fblogic.git selftests:firmware: fixes a call to a wrong function name This is a patch to the tools/testing/selftests/firmware/fw_run_tests.sh file which fixes a bug which calls to a wrong function name,which in turn blocks the execution of certain tests. Signed-off-by: Jeffrin Jose T Acked-by: Kees Cook Signed-off-by: Greg Kroah-Hartman --- diff --git a/tools/testing/selftests/firmware/fw_run_tests.sh b/tools/testing/selftests/firmware/fw_run_tests.sh index 06d638e9dc62..cffdd4eb0a57 100755 --- a/tools/testing/selftests/firmware/fw_run_tests.sh +++ b/tools/testing/selftests/firmware/fw_run_tests.sh @@ -66,5 +66,5 @@ if [ -f $FW_FORCE_SYSFS_FALLBACK ]; then run_test_config_0003 else echo "Running basic kernel configuration, working with your config" - run_test + run_tests fi