aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Stancek <jstancek@redhat.com>2018-02-13 16:05:45 +0100
committerJan Stancek <jstancek@redhat.com>2018-02-13 16:05:45 +0100
commit11510e85ebeb8c6df2db478722f398b72e36cdcc (patch)
tree7db9e44406914f27716d74e72359e1b09fc3f080
parent79b720d24f6349e1f7a22443dc2ac5d63f74351c (diff)
dynamic_debug01: fix cleanup on older kernels
setup() hits TCONF, but cleanup() still runs and tries to umount non-existend directory, which eventually reports a failure: 1 TCONF: Dynamic debug is available since version 2.6.30 awk: cmd. line:1: fatal: cannot open file `./debug_statements' for reading (No such file or directory) Cannot umount "" 1 TINFO: umount() failed, try 1 ... 1 TINFO: Likely gvfsd-trash is probing newly mounted fs, kill it to speed up tests. Cannot umount "" ... Signed-off-by: Jan Stancek <jstancek@redhat.com>
-rwxr-xr-xtestcases/kernel/tracing/dynamic_debug/dynamic_debug01.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/testcases/kernel/tracing/dynamic_debug/dynamic_debug01.sh b/testcases/kernel/tracing/dynamic_debug/dynamic_debug01.sh
index ec58c69c5..4cd43baf2 100755
--- a/testcases/kernel/tracing/dynamic_debug/dynamic_debug01.sh
+++ b/testcases/kernel/tracing/dynamic_debug/dynamic_debug01.sh
@@ -153,7 +153,9 @@ ddebug_test()
cleanup()
{
- FLAGS_SET=$(awk -v emp="$EMPTY_FLAG" '$3 != emp' $DYNDEBUG_STATEMENTS)
+ if [ -e "$DYNDEBUG_STATEMENTS" ]; then
+ FLAGS_SET=$(awk -v emp="$EMPTY_FLAG" '$3 != emp' $DYNDEBUG_STATEMENTS)
+ fi
if [ "$FLAGS_SET" ] ; then
FLAG_PREFIX=$([ $NEW_INTERFACE -eq 1 ] && echo "" || echo "+")
/bin/echo "$FLAGS_SET" | while read -r FLAG_LINE ; do
@@ -163,7 +165,7 @@ cleanup()
> "$DEBUGFS_CONTROL"
done
fi
- if [ $DEBUGFS_WAS_MOUNTED -eq 0 ] ; then
+ if [ $DEBUGFS_WAS_MOUNTED -eq 0 -a -n "$DEBUGFS_PATH" ] ; then
tst_umount "$DEBUGFS_PATH"
fi
}