Blame SOURCES/e2fsprogs-1.45.6-tests-Add-option-to-print-diff-output-of-failed-test.patch

a77133
From 4b2fa25a97e53636dfe216198a1e97266cf0709a Mon Sep 17 00:00:00 2001
a77133
From: Lukas Czerner <lczerner@redhat.com>
a77133
Date: Thu, 2 Sep 2021 12:58:52 +0200
a77133
Subject: [PATCH 46/46] tests: Add option to print diff output of failed tests
a77133
Content-Type: text/plain
a77133
a77133
Add variable $PRINT_FAILED which when set will print the diff output of
a77133
a failed test.
a77133
a77133
Signed-off-by: Lukas Czerner <lczerner@redhat.com>
a77133
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
a77133
---
a77133
 tests/test_one.in | 4 ++++
a77133
 1 file changed, 4 insertions(+)
a77133
a77133
diff --git a/tests/test_one.in b/tests/test_one.in
a77133
index 5d7607ad..78499ad0 100644
a77133
--- a/tests/test_one.in
a77133
+++ b/tests/test_one.in
a77133
@@ -82,6 +82,10 @@ if [ $elapsed -gt 60 -a ! -f $test_dir/is_slow_test ]; then
a77133
 	echo "$test_name:  consider adding $test_dir/is_slow_test"
a77133
 fi
a77133
 
a77133
+if [ -n "$PRINT_FAILED" -a -f $test_name.failed ] ; then
a77133
+	cat $test_name.failed
a77133
+fi
a77133
+
a77133
 if [ "$SKIP_UNLINK" != "true" ] ; then
a77133
 	rm -f $TMPFILE
a77133
 fi
a77133
-- 
a77133
2.35.1
a77133