summaryrefslogtreecommitdiffstats
path: root/examples/test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'examples/test.sh')
-rwxr-xr-xexamples/test.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/test.sh b/examples/test.sh
index 6c704faa..8f7566fb 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 -u "$b".right "$b".out >"$b".diff 2>&1; then
- rm "$b".out "$b".diff
- fi
+ b="${f%%.test}"
+ abrt-dump-oops -o "$f" >"$b".out 2>&1
+ if diff -u "$b".right "$b".out >"$b".diff 2>&1; then
+ rm "$b".out "$b".diff
+ fi
done