From: Jérémie Galarneau Date: Tue, 20 Apr 2021 05:01:47 +0000 (-0400) Subject: Tests: fix: notifier discarded count: typo results in failure X-Git-Tag: v2.13.0-rc1~65 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=94d9764ffaec84472b426976ef557fb252f56678 Tests: fix: notifier discarded count: typo results in failure Signed-off-by: Jérémie Galarneau Change-Id: I94b8c60764e1a0d79b25fd252c1a344d807fa61f --- diff --git a/tests/regression/tools/notification/test_notification_notifier_discarded_count b/tests/regression/tools/notification/test_notification_notifier_discarded_count index 697c652bc..08b014e1e 100755 --- a/tests/regression/tools/notification/test_notification_notifier_discarded_count +++ b/tests/regression/tools/notification/test_notification_notifier_discarded_count @@ -82,11 +82,11 @@ function test_kernel_notifier_discarded_count # Confirm that the discarded notification line is present. To avoid # false positives. - cat "$list_triggers_stdout" | grep --quiet "dicarded tracer messages" + cat "$list_triggers_stdout" | grep --quiet "discarded tracer messages" ok $? "Tracer notification discarded line printed" # Confirm that the number of dicarded tracer messages is not zero. - cat "$list_triggers_stdout" | grep --quiet "dicarded tracer messages: 0" + cat "$list_triggers_stdout" | grep --quiet "discarded tracer messages: 0" isnt $? 0 "Discarded tracer notification number non-zero as expected" lttng_remove_trigger_ok "$trigger_name"