diff TOOLS/benchmark-gab/start @ 7177:cba37985dec5

v0.9 of my compile+benchmark script, designed for my local boxes, shared on NFS, etc.. Read README, and RTFS before using it. Oh, and feel free to reverse/del, but al3x wanted it.
author gabucino
date Fri, 30 Aug 2002 21:16:52 +0000
parents
children bcbbe5ee11fd
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TOOLS/benchmark-gab/start	Fri Aug 30 21:16:52 2002 +0000
@@ -0,0 +1,24 @@
+#!/bin/sh
+
+. ./variables
+
+rm -f $LOGFILE
+
+wrtlog Script version v0.9
+wrtlog CPU: $VENDOR $MODEL $MHZ
+wrtlog MEM: $MEMORY
+wrtlog VGA: $VGA
+
+if [ ! -e no_compile ]; then
+  ./compile
+else
+  wrtlog Skipping compilation
+fi
+
+if [ ! -e no_benchmark ]; then
+  ./benchmark
+else
+  wrtlog Skipping benchmark
+fi
+
+wrtlog Exiting.