blob: a76322bdc45ecb3cab7b55f780870194ef674df7 [file] [log] [blame]
Jack Palevich1cdef202009-05-22 12:06:27 -07001#!/bin/sh
2rm -f test-acc
3cd ..
4g++ -I../include acc.cpp disassem.cpp tests/main.cpp -g -ldl -o tests/test-acc
5cd tests
6if [ -x "test-acc" ]; then
7 ./test-acc -S data/returnval.c
8
9 if [ "$(uname)" = "Linux" ]; then
10 if [ "$(uname -m)" = "i686" ]; then
11 echo "Linux i686. Testing otcc.c"
12 ./test-acc data/otcc.c data/otcc.c data/returnval.c
13 fi
14 fi
15fi