better name
authorMatthias Braun <matze@braunis.de>
Thu, 13 Jul 2006 14:38:12 +0000 (14:38 +0000)
committerMatthias Braun <matze@braunis.de>
Thu, 13 Jul 2006 14:38:12 +0000 (14:38 +0000)
ir/be/test/compile.sh [deleted file]
ir/be/test/makereport.sh [new file with mode: 0755]

diff --git a/ir/be/test/compile.sh b/ir/be/test/compile.sh
deleted file mode 100755 (executable)
index 1c19b24..0000000
+++ /dev/null
@@ -1,101 +0,0 @@
-EDG_CFLAGS="-b ra-chordal-spill=belady -b ia32-arch=athlon -b ia32-fpunit=x87 --c --gnu=400002 -I/usr/lib/gcc-lib/i586-suse-linux/3.3.5/include"
-GCC_CFLAGS="-O3 -g -fomit-frame-pointer"
-LINKFLAGS="-lm"
-
-CFILES="*.c"
-OUTPUTDIR="stats-`date +%d.%m.%y`"
-
-mkdir -p build_firm
-mkdir -p build_gcc
-mkdir -p $OUTPUTDIR
-
-XMLRES=$OUTPUTDIR/result.xml
-cat > $XMLRES << __END__
-<?xml version="1.0"?>
-<results>
-    <environment>
-        <EDG_CFLAGS>${EDG_CFLAGS}</EDG_CFLAGS>
-        <GCC_CFLAGS>${GCC_CFLAGS}</GCC_CFLAGS>
-    </environment>
-__END__
-
-# so endless apps stop at some point...
-ulimit -t2
-
-for file in ${CFILES}; do
-    COMPILE_RES="ok"
-    LINK_RES="omitted"
-    GCC_RES="ok"
-    GCC_RUN_RES="omitted"
-    FIRM_RUN_RES="omitted"
-    DIFF_RES="omitted"
-
-    name="`basename $file .c`"
-    res="$OUTPUTDIR/buildresult_$name.txt"
-    echo "Building $name"
-    echo "Results for $name" > $res
-    echo "*** EDG/FIRM Compile" >> $res
-    CMD="edg ${EDG_CFLAGS} $file"
-    echo "$CMD" >> $res
-    $CMD >> $res 2>&1 || COMPILE_RES="failed"
-
-    if [ ${COMPILE_RES} == "ok" ]; then
-        LINK_RES="ok"
-        CMD="mv $name.s build_firm/$name.s"
-        echo "$CMD" >> $res
-        $CMD >> $res 2>&1
-        echo "*** Linking" >> $res
-        CMD="gcc build_firm/$name.s ${LINKFLAGS} -o build_firm/$name.exe"
-        echo "$CMD" >> $res
-        $CMD >> $res 2>&1 || LINK_RES="failed"
-    fi
-
-    echo "*** GCC Compile" >> $res
-    CMD="gcc ${GCC_CFLAGS} $file ${LINKFLAGS} -o build_gcc/$name.exe"
-    echo "$CMD" >> $res
-    $CMD >> $res 2>&1 || GCC_RES="failed"
-
-    if [ ${GCC_RES} = "ok" ]; then
-        GCC_RUN_RES="ok"
-
-        echo "*** Run GCC" >> $res
-        CMD="build_gcc/$name.exe > $OUTPUTDIR/result_gcc_$name.txt 2>&1"
-        echo "$CMD" >> $res
-        build_gcc/$name.exe > $OUTPUTDIR/result_gcc_$name.txt 2>&1 || GCC_RUN_RES="failed"
-    fi
-
-    if [ ${LINK_RES} = "ok" ]; then
-        FIRM_RUN_RES="ok"
-
-        echo "*** Run Firm" >> $res
-        CMD="build_firm/$name.exe > $OUTPUTDIR/result_gcc_$name.txt 2>&1"
-        echo "$CMD" >> $res
-        build_firm/$name.exe > $OUTPUTDIR/result_firm_$name.txt 2>&1 || FIRM_RUN_RES="failed"
-    fi
-
-    if [ ${GCC_RUN_RES} = "ok" -a ${FIRM_RUN_RES} = "ok" ]; then
-        DIFF_RES="ok"
-
-        echo "*** Compare Results" >> $res
-        CMD="diff -u $OUTPUTDIR/result_gcc_$name.txt $OUTPUTDIR/result_firm_$name.txt"
-        $CMD > $OUTPUTDIR/result_diff_$name.txt 2>&1 || DIFF_RES="failed"
-    fi
-
-    cat >> $XMLRES << __END__
-    <result name="$name">
-        <compile>$COMPILE_RES</compile>
-        <link>$LINK_RES</link>
-        <gcc_compile>$GCC_RES</gcc_compile>
-        <gcc_run>$GCC_RUN_RES</gcc_run>
-        <firm_run>$FIRM_RUN_RES</firm_run>
-        <diff>$DIFF_RES</diff>
-    </result>
-__END__
-done
-
-echo "</results>" >> $XMLRES
-
-xsltproc --output $OUTPUTDIR/index.html makehtml.xslt $XMLRES
-
-# maybe execute custom actions after result has been generated
-[ -e after_compile.sh ] && ./after_compile.sh "$OUTPUTDIR"
diff --git a/ir/be/test/makereport.sh b/ir/be/test/makereport.sh
new file mode 100755 (executable)
index 0000000..1c19b24
--- /dev/null
@@ -0,0 +1,101 @@
+EDG_CFLAGS="-b ra-chordal-spill=belady -b ia32-arch=athlon -b ia32-fpunit=x87 --c --gnu=400002 -I/usr/lib/gcc-lib/i586-suse-linux/3.3.5/include"
+GCC_CFLAGS="-O3 -g -fomit-frame-pointer"
+LINKFLAGS="-lm"
+
+CFILES="*.c"
+OUTPUTDIR="stats-`date +%d.%m.%y`"
+
+mkdir -p build_firm
+mkdir -p build_gcc
+mkdir -p $OUTPUTDIR
+
+XMLRES=$OUTPUTDIR/result.xml
+cat > $XMLRES << __END__
+<?xml version="1.0"?>
+<results>
+    <environment>
+        <EDG_CFLAGS>${EDG_CFLAGS}</EDG_CFLAGS>
+        <GCC_CFLAGS>${GCC_CFLAGS}</GCC_CFLAGS>
+    </environment>
+__END__
+
+# so endless apps stop at some point...
+ulimit -t2
+
+for file in ${CFILES}; do
+    COMPILE_RES="ok"
+    LINK_RES="omitted"
+    GCC_RES="ok"
+    GCC_RUN_RES="omitted"
+    FIRM_RUN_RES="omitted"
+    DIFF_RES="omitted"
+
+    name="`basename $file .c`"
+    res="$OUTPUTDIR/buildresult_$name.txt"
+    echo "Building $name"
+    echo "Results for $name" > $res
+    echo "*** EDG/FIRM Compile" >> $res
+    CMD="edg ${EDG_CFLAGS} $file"
+    echo "$CMD" >> $res
+    $CMD >> $res 2>&1 || COMPILE_RES="failed"
+
+    if [ ${COMPILE_RES} == "ok" ]; then
+        LINK_RES="ok"
+        CMD="mv $name.s build_firm/$name.s"
+        echo "$CMD" >> $res
+        $CMD >> $res 2>&1
+        echo "*** Linking" >> $res
+        CMD="gcc build_firm/$name.s ${LINKFLAGS} -o build_firm/$name.exe"
+        echo "$CMD" >> $res
+        $CMD >> $res 2>&1 || LINK_RES="failed"
+    fi
+
+    echo "*** GCC Compile" >> $res
+    CMD="gcc ${GCC_CFLAGS} $file ${LINKFLAGS} -o build_gcc/$name.exe"
+    echo "$CMD" >> $res
+    $CMD >> $res 2>&1 || GCC_RES="failed"
+
+    if [ ${GCC_RES} = "ok" ]; then
+        GCC_RUN_RES="ok"
+
+        echo "*** Run GCC" >> $res
+        CMD="build_gcc/$name.exe > $OUTPUTDIR/result_gcc_$name.txt 2>&1"
+        echo "$CMD" >> $res
+        build_gcc/$name.exe > $OUTPUTDIR/result_gcc_$name.txt 2>&1 || GCC_RUN_RES="failed"
+    fi
+
+    if [ ${LINK_RES} = "ok" ]; then
+        FIRM_RUN_RES="ok"
+
+        echo "*** Run Firm" >> $res
+        CMD="build_firm/$name.exe > $OUTPUTDIR/result_gcc_$name.txt 2>&1"
+        echo "$CMD" >> $res
+        build_firm/$name.exe > $OUTPUTDIR/result_firm_$name.txt 2>&1 || FIRM_RUN_RES="failed"
+    fi
+
+    if [ ${GCC_RUN_RES} = "ok" -a ${FIRM_RUN_RES} = "ok" ]; then
+        DIFF_RES="ok"
+
+        echo "*** Compare Results" >> $res
+        CMD="diff -u $OUTPUTDIR/result_gcc_$name.txt $OUTPUTDIR/result_firm_$name.txt"
+        $CMD > $OUTPUTDIR/result_diff_$name.txt 2>&1 || DIFF_RES="failed"
+    fi
+
+    cat >> $XMLRES << __END__
+    <result name="$name">
+        <compile>$COMPILE_RES</compile>
+        <link>$LINK_RES</link>
+        <gcc_compile>$GCC_RES</gcc_compile>
+        <gcc_run>$GCC_RUN_RES</gcc_run>
+        <firm_run>$FIRM_RUN_RES</firm_run>
+        <diff>$DIFF_RES</diff>
+    </result>
+__END__
+done
+
+echo "</results>" >> $XMLRES
+
+xsltproc --output $OUTPUTDIR/index.html makehtml.xslt $XMLRES
+
+# maybe execute custom actions after result has been generated
+[ -e after_compile.sh ] && ./after_compile.sh "$OUTPUTDIR"