#!/bin/bash

WORK='test/h30a95h1'
if [ -d ${WORK}/lib ] ; then
  cd ${WORK}/lib
  rm -f v*
  rm -f k*
  rm -f *
  cd ../../../
fi
rmdir ${WORK}/lib
./austal2000 -D ${WORK}

./austal2000 -D test/h30a95h0
./austal2000 -D test/h50a95n

WORK='test/h50a95cn'
if [ -d ${WORK}/lib ] ; then
  cd ${WORK}/lib
  rm -f v*
  rm -f k*
  rm -f *
  cd ../../../
fi
rmdir ${WORK}/lib
./austal2000 -D ${WORK}

./austal2000 -D test/h00aks-nh3
./austal2000 -D test/house-01
./austal2000 -D test/tower-01
./austal2000 -D test/tower-02
./austal2000 -D test/simple

echo "run_all3 finished"

