summaryrefslogtreecommitdiff
path: root/tools/run-tests.sh
blob: bd3cc60aae13b667783db865051b0b17d2b1520a (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

for w in 4 8 16 32 64 128 ; do
    ./gf_methods $w -A -U | sh -e
    if [ $? != "0" ] ; then
      echo "Failed unit tests for w=$w"
      break
    fi
done