view tester.sh @ 12:ee302fe07296 trunk

[svn r16] * Updated all tests to have a main * Updated runalltests to both compile and run the tests
author lindquist
date Tue, 02 Oct 2007 05:27:44 +0200
parents d3ee9efe20e2
children 860524276608
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
    llvmdc $1 -Itest -odtest -c &&
    llvm-dis -f $1.bc &&
    cat $1.ll
    exit $?
elif [ "$2" = "llopt" ]; then
    llvmdc $1 -Itest -odtest -c &&
    opt -f -o=$1.bc -std-compile-opts $1.bc &&
    llvm-dis -f $1.bc &&
    cat $1.ll
    exit $?
elif [ "$2" = "run" ]; then
    llvmdc $1 -Itest -odtest -of$1 &&
    $1
    exit $?
elif [ "$2" = "c" ]; then
    llvmdc $1 -Itest -odtest -c
    exit $?
elif [ "$2" = "gdb" ]; then
    gdb --args llvmdc $1 -Itest -odtest '-c'
    exit $?
elif [ "$2" = "gdbrun" ]; then
    llvmdc $1 -Itest -odtest '-c' &&
    gdb $1
    exit $?
else
    echo "bad command or filename"
fi