view tester.sh @ 38:27b2f40bdb58 trunk

[svn r42] Disabled the extensive logging by default. Use the -vv flag to get it back. Fiddled a bit the the testing system. Added a very simple SDL graphics demo.
author lindquist
date Wed, 10 Oct 2007 06:16:48 +0200
parents 3cfcb944304e
children 8b0e809563df
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 lib/lphobos.bc -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