Tests: clean-up: remove trailing dot in snapshot test statements
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 10 Sep 2020 16:29:50 +0000 (12:29 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 10 Sep 2020 16:29:50 +0000 (12:29 -0400)
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
Change-Id: I95208d67b18ba806f009b9a6b53d5e2cc38b6c74

tests/regression/tools/snapshots/test_kernel
tests/regression/tools/snapshots/test_kernel_streaming
tests/regression/tools/snapshots/ust_test

index 15b7ec1762c445a0a2429de2512c3d1d1f9bae49..24b0ad4a2b6f43dc222cf42c6607807713718f50 100755 (executable)
@@ -138,9 +138,9 @@ function test_kernel_local_snapshot_discard ()
        rm -rf $TRACE_PATH
 
        if [ x"$FIRST_LINE" != x"$FIRST_LINE_2" ]; then
-               fail "First snapshot event do not match."
+               fail "First snapshot event do not match"
        else
-               pass "First snapshot event match."
+               pass "First snapshot event match"
        fi
 
        stop_lttng_tracing_ok $SESSION_NAME
@@ -176,9 +176,9 @@ function test_kernel_local_snapshot_overwrite_small_buffers ()
        rm -rf $TRACE_PATH
 
        if [ x"$FIRST_LINE" != x"$FIRST_LINE_2" ]; then
-               pass "First snapshot event do not match."
+               pass "First snapshot event do not match"
        else
-               fail "First snapshot event match."
+               fail "First snapshot event match"
        fi
 
        stop_lttng_tracing_ok $SESSION_NAME
@@ -222,7 +222,7 @@ else
        isroot=0
 fi
 
-skip $isroot "Root access is needed. Skipping all kernel snapshot tests." $NUM_TESTS ||
+skip $isroot "Root access is needed. Skipping all kernel snapshot tests" $NUM_TESTS ||
 {
 
        validate_lttng_modules_present
index 0a9fcd5c3075b7e537483d45113982bc5b7a3a6f..544c2e4db1a4dfdea57654a97b8e9aa079e2fccc 100755 (executable)
@@ -150,7 +150,7 @@ else
        isroot=0
 fi
 
-skip $isroot "Root access is needed. Skipping all kernel streaming tests." $NUM_TESTS ||
+skip $isroot "Root access is needed. Skipping all kernel streaming tests" $NUM_TESTS ||
 {
        validate_lttng_modules_present
 
index c2563afd867b64a42902ccc5e6b51444c4c183e5..37475d7fdd49c387242e5646fa62d0294a60c69d 100755 (executable)
@@ -23,12 +23,12 @@ TRACE_PATH=$(mktemp -d)
 source $TESTDIR/utils/utils.sh
 
 if [ ! -x "$TESTAPP_BIN" ]; then
-       BAIL_OUT "No UST events binary detected."
+       BAIL_OUT "No UST events binary detected"
 fi
 
 # Need the number of snapshot to do.
 if [ -z $1 ]; then
-       BAIL_OUT "A number of snapshot is needed."
+       BAIL_OUT "A number of snapshot is needed"
 fi
 NR_SNAPSHOT=$1
 
@@ -237,9 +237,9 @@ function test_ust_local_snapshot_small_discard_buffers ()
        rm -rf $TRACE_PATH/
 
        if [ x"$FIRST_LINE" != x"$FIRST_LINE_2" ]; then
-               fail "First snapshot event do not match."
+               fail "First snapshot event do not match"
        else
-               pass "First snapshot event match."
+               pass "First snapshot event match"
        fi
 
        stop_lttng_tracing_ok $SESSION_NAME
@@ -282,9 +282,9 @@ function test_ust_local_snapshot_small_overwrite_buffers ()
        rm -rf $TRACE_PATH/
 
        if [ x"$FIRST_LINE" != x"$FIRST_LINE_2" ]; then
-               pass "First snapshot event do not match."
+               pass "First snapshot event do not match"
        else
-               fail "First snapshot event match."
+               fail "First snapshot event match"
        fi
 
        stop_lttng_tracing_ok $SESSION_NAME
This page took 0.028336 seconds and 5 git commands to generate.