ia5test.sh
author viric@llimona
Sun, 02 Sep 2007 16:01:27 +0200
changeset 27 153c479aa0bc
parent 26 700a68421116
permissions -rwxr-xr-x
LEGUMIN kaj aliaj gxisdatigoj.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26
700a68421116 Adding .hgignore and the ia5test.
viric@llimona
parents:
diff changeset
     1
#!/bin/sh
700a68421116 Adding .hgignore and the ia5test.
viric@llimona
parents:
diff changeset
     2
700a68421116 Adding .hgignore and the ia5test.
viric@llimona
parents:
diff changeset
     3
for a in `seq 1 7000`; do
700a68421116 Adding .hgignore and the ia5test.
viric@llimona
parents:
diff changeset
     4
    OUT=`./ia5 -n $a`
700a68421116 Adding .hgignore and the ia5test.
viric@llimona
parents:
diff changeset
     5
    OUT2=`./ia5 -w $OUT`
700a68421116 Adding .hgignore and the ia5test.
viric@llimona
parents:
diff changeset
     6
    if [ $OUT2 != $a ]; then
700a68421116 Adding .hgignore and the ia5test.
viric@llimona
parents:
diff changeset
     7
        echo "Error in $a -> $OUT -> $OUT2"
700a68421116 Adding .hgignore and the ia5test.
viric@llimona
parents:
diff changeset
     8
    fi
700a68421116 Adding .hgignore and the ia5test.
viric@llimona
parents:
diff changeset
     9
700a68421116 Adding .hgignore and the ia5test.
viric@llimona
parents:
diff changeset
    10
done