aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing
diff options
context:
space:
mode:
authorShuah Khan <shuah.kh@samsung.com>2014-06-25 15:31:37 -0600
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-11 18:11:18 -0700
commit4813d2e7361468f06b400dea6706786d8e55dba6 (patch)
tree854912f1052d9e9e4e5441e2293df45fe65a9ee6 /tools/testing
parentMAINTAINERS: Add thunderbolt driver (diff)
downloadwireguard-linux-4813d2e7361468f06b400dea6706786d8e55dba6.tar.xz
wireguard-linux-4813d2e7361468f06b400dea6706786d8e55dba6.zip
tools: memory-hotplug fix unexpected operator error
on-off-test is a bash script and invoked from /bin/sh This results in the following error: ./on-off-test.sh: 9: [: !=: unexpected operator Changed Makefile to use bash instead. Signed-off-by: Shuah Khan <shuah.kh@samsung.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools/testing')
-rw-r--r--tools/testing/selftests/memory-hotplug/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/memory-hotplug/Makefile b/tools/testing/selftests/memory-hotplug/Makefile
index 350bfeda3aa8..058c76f5d102 100644
--- a/tools/testing/selftests/memory-hotplug/Makefile
+++ b/tools/testing/selftests/memory-hotplug/Makefile
@@ -1,6 +1,6 @@
all:
run_tests:
- @/bin/sh ./on-off-test.sh || echo "memory-hotplug selftests: [FAIL]"
+ @/bin/bash ./on-off-test.sh || echo "memory-hotplug selftests: [FAIL]"
clean: