summaryrefslogtreecommitdiff
path: root/plugins/MirOTR/ekhtml/testsuite/test_basic.sh
blob: 87d2e64690b5abe91778a9c95eafb70b33d66441 (plain)
1
2
3
4
5
6
7
8
9
10
#! /bin/bash

for i in `find tstpages -type f | sort`
do
    echo Testing page: $i
    ./tester 1 < $i > ek.test
    ./pyparser.py $i > py.test
    diff -a -i -u ek.test py.test || exit 1
done