summaryrefslogtreecommitdiff
path: root/samples/bpf/test_override_return.sh
diff options
context:
space:
mode:
authorJuhee Kang <claudiajkang@gmail.com>2021-07-27 04:10:55 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-09-22 12:26:30 +0200
commit76cbc142a5465a8849ebaa66a97c65f6b66253e9 (patch)
tree6e43c04cf910a75c72d62dc67193f16eb1d17cf9 /samples/bpf/test_override_return.sh
parent917eb0bbb8d3ef9012aaefc080130fd6f0dd0adc (diff)
samples: bpf: Fix tracex7 error raised on the missing argument
[ Upstream commit 7d07006f05922b95518be403f08ef8437b67aa32 ] The current behavior of 'tracex7' doesn't consist with other bpf samples tracex{1..6}. Other samples do not require any argument to run with, but tracex7 should be run with btrfs device argument. (it should be executed with test_override_return.sh) Currently, tracex7 doesn't have any description about how to run this program and raises an unexpected error. And this result might be confusing since users might not have a hunch about how to run this program. // Current behavior # ./tracex7 sh: 1: Syntax error: word unexpected (expecting ")") // Fixed behavior # ./tracex7 ERROR: Run with the btrfs device argument! In order to fix this error, this commit adds logic to report a message and exit when running this program with a missing argument. Additionally in test_override_return.sh, there is a problem with multiple directory(tmpmnt) creation. So in this commit adds a line with removing the directory with every execution. Signed-off-by: Juhee Kang <claudiajkang@gmail.com> Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Acked-by: Yonghong Song <yhs@fb.com> Link: https://lore.kernel.org/bpf/20210727041056.23455-1-claudiajkang@gmail.com Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'samples/bpf/test_override_return.sh')
-rwxr-xr-xsamples/bpf/test_override_return.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/samples/bpf/test_override_return.sh b/samples/bpf/test_override_return.sh
index e68b9ee6814b..35db26f736b9 100755
--- a/samples/bpf/test_override_return.sh
+++ b/samples/bpf/test_override_return.sh
@@ -1,5 +1,6 @@
#!/bin/bash
+rm -r tmpmnt
rm -f testfile.img
dd if=/dev/zero of=testfile.img bs=1M seek=1000 count=1
DEVICE=$(losetup --show -f testfile.img)