X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=blobdiff_plain;f=the-big-benchmark.sh;fp=the-big-benchmark.sh;h=0000000000000000000000000000000000000000;hp=c493f923130180fc6aaf219eca225f980bc88b70;hb=75336835c7c218854945f227ef68ed84a5c597ca;hpb=8d01fad7fa5d095f0957030d04705200fed41757 diff --git a/the-big-benchmark.sh b/the-big-benchmark.sh deleted file mode 100755 index c493f923..00000000 --- a/the-big-benchmark.sh +++ /dev/null @@ -1,57 +0,0 @@ -#!/bin/sh - -set -e - -echo "The Big Benchmark" -echo " =================" -echo -echo "WARNING: running this script will destroy ANY local changes you" -echo "might have on the repository that haven't been pushed yet." -echo -if [ x"$1" != x"--yes" ]; then - echo "Are you absolutely sure you want to run this?" - echo - while :; do - echo -n "y/n: " - read -r yesno - case "$yesno" in - y) - break - ;; - n) - echo "Aborted." - exit 1 - ;; - esac - done -fi - -set -x -rm -f data/*.log -./all clean --reclone -./all compile -r -( - set -x - for e in omg low med normal high ultra ultimate; do - USE_GDB=no \ - ./all run \ - +exec effects-$e.cfg \ - "$@" \ - -nohome \ - -benchmarkruns 4 -benchmarkruns_skipfirst \ - -benchmark demos/the-big-keybench.dem - done -) >data/engine.log 2>&1 -./all clean -r -f -u -set +x - -echo -echo "Please provide the the following info to the Xonotic developers:" -echo " - CPU speed" -echo " - memory size" -echo " - graphics card (which vendor, which model)" -echo " - operating system (including whether it is 32bit or 64bit)" -echo " - graphics driver version" -echo " - the files benchmark.log and engine.log in the data directory" -echo -echo "Thank you"