1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-19 14:26:57 +00:00
mpv/TOOLS/benchmark-gab/start
gabucino 26013a4273 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.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7178 b3059339-0415-0410-9bf9-f77b7e298cf2
2002-08-30 21:16:52 +00:00

25 lines
317 B
Bash
Executable File

#!/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.