view tester.sh @ 4:e116aa1488e6 trunk

[svn r8] changed backend includes to always use the gen/<foo>.h prefix fixed passing string literals as array parameters few other fixes moved some array routines into gen/arrays
author lindquist
date Mon, 03 Sep 2007 17:34:30 +0200
parents c53b6e3fe49a
children d3ee9efe20e2
line wrap: on
line source

#!/bin/bash

if [ -z $1 ]; then
    echo "you need to specify the test name"
    exit 1
fi

if [ "$2" = "ll" ]; then
    make &&
    llvmdc $1 -Itest -odtest -c &&
    llvm-dis -f $1.bc &&
    cat $1.ll
    exit $?
elif [ "$2" = "run" ]; then
    make &&
    llvmdc $1 -Itest -odtest -of$1 &&
    $1
    exit $?
elif [ "$2" = "c" ]; then
    make &&
    llvmdc $1 -Itest -odtest -c
    exit $?
elif [ "$2" = "gdb" ]; then
    make &&
    gdb --args llvmdc $1 -Itest -odtest '-c'
    exit $?
else
    echo "bad command or filename"
fi