comparison 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
comparison
equal deleted inserted replaced
7176:42222161de9b 7177:cba37985dec5
1 #!/bin/sh
2
3 . ./variables
4
5 rm -f $LOGFILE
6
7 wrtlog Script version v0.9
8 wrtlog CPU: $VENDOR $MODEL $MHZ
9 wrtlog MEM: $MEMORY
10 wrtlog VGA: $VGA
11
12 if [ ! -e no_compile ]; then
13 ./compile
14 else
15 wrtlog Skipping compilation
16 fi
17
18 if [ ! -e no_benchmark ]; then
19 ./benchmark
20 else
21 wrtlog Skipping benchmark
22 fi
23
24 wrtlog Exiting.