blob: 28b76553c020087e1240ba18b57b742a2c6a3809 [file] [log] [blame]
Jack Palevichf54db022009-05-08 15:18:32 -07001#!/bin/sh
Jack Paleviche7b59062009-05-19 17:12:17 -07002rm -f tests/acc
Jack Palevicha6535612009-05-13 16:24:17 -07003g++ acc.cpp disassem.cpp -g -ldl -o tests/acc && tests/acc tests/otcc.c -a x86 -d tests/otcc.out && diff tests/otcc.out tests/otcc.out-orig
Jack Paleviche7b59062009-05-19 17:12:17 -07004if [ -x "tests/acc" ]; then
5 tests/acc -S tests/returnval.c
6
7 if [ "$(uname)" = "Linux" ]; then
8 if [ "$(uname -m)" = "i686" ]; then
9 echo "Linux i686. Testing otcc.c"
10 tests/acc tests/otcc.c tests/otcc.c tests/returnval.c
11 fi
12 fi
13fi