summaryrefslogtreecommitdiff
path: root/pbx/ael/ael-test/runtests
diff options
context:
space:
mode:
Diffstat (limited to 'pbx/ael/ael-test/runtests')
-rwxr-xr-xpbx/ael/ael-test/runtests16
1 files changed, 16 insertions, 0 deletions
diff --git a/pbx/ael/ael-test/runtests b/pbx/ael/ael-test/runtests
index 441088eb3..b8772cdb4 100755
--- a/pbx/ael/ael-test/runtests
+++ b/pbx/ael/ael-test/runtests
@@ -21,4 +21,20 @@ for i in ael-test*; do
fi
done
+
+for i in ael-ntest*; do
+ echo -n Test: $i.................
+ (cd $i; ../../../../utils/aelparse -d | grep -v -i 'seconds' > ../res.$i)
+ do_filter < res.$i > $NEW
+ do_filter < ref.$i > $ORIG
+ if (diff -q $NEW $ORIG > /dev/null 2>&1 ) then
+ echo PASSED
+ rm res.$i
+ else
+ echo %%%%%%FAILED%%%%%%
+ # diff -u ref.$i res.$i
+ diff -u $ORIG $NEW
+ fi
+
+done
rm $NEW $ORIG