ia5test.sh
author viric@mandarina
Sat, 08 Sep 2007 09:13:15 +0200
changeset 29 84abeba4ef3b
parent 26 700a68421116
permissions -rwxr-xr-x
Removing binary.
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