1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-06 23:20:15 +00:00
mpv/TOOLS/benchmark-gab/start

25 lines
317 B
Plaintext
Raw Normal View History

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