#!/bin/bash

for t in `ls -S -r *.4ti2`
do
  ./runtest `basename $t .4ti2` $*
  if [ $? != 0 ]; then exit 1; fi
done
