summaryrefslogtreecommitdiffstats
path: root/examples/test.sh
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-05-25 14:21:59 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-05-25 14:21:59 +0200
commit199554cada64d659bd756c7fb637f2d1f6a3cf12 (patch)
treec0a15c5c479fe87234daf2296b094bff4e5b653d /examples/test.sh
parentf03f8111411de6ece4a810fadacd5e019e167cfe (diff)
downloadabrt-199554cada64d659bd756c7fb637f2d1f6a3cf12.tar.gz
abrt-199554cada64d659bd756c7fb637f2d1f6a3cf12.tar.xz
abrt-199554cada64d659bd756c7fb637f2d1f6a3cf12.zip
KerneloopsSysLog.cpp: do not stop on "--- [ cut here ] ---" line
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'examples/test.sh')
-rwxr-xr-xexamples/test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/test.sh b/examples/test.sh
index cedc0766..6c704faa 100755
--- a/examples/test.sh
+++ b/examples/test.sh
@@ -1,7 +1,7 @@
for f in *.test; do
b="${f%%.test}"
dumpoops -s "$f" >"$b".out 2>&1
- if diff "$b".out "$b".right >"$b".diff 2>&1; then
+ if diff -u "$b".right "$b".out >"$b".diff 2>&1; then
rm "$b".out "$b".diff
fi
done