]> git.xonotic.org Git - xonotic/xonotic.git/blobdiff - the-big-benchmark.sh
the-big-benchmark: test all effects config levels
[xonotic/xonotic.git] / the-big-benchmark.sh
index 10b6a45e21e55cab037ef30b7844805c207725b7..928fcb575764b06fec7ebddfec162146ff6f9068 100755 (executable)
@@ -8,34 +8,40 @@ echo
 echo "WARNING: running this script will destroy ANY local changes you"
 echo "might have on the repository."
 echo
-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
+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/benchmark.log
+rm -f data/*.log
 ./all clean --reclone
 ./all compile -r
-./all run "$@" -nohome -benchmarkruns 3 -benchmark demos/the-big-keybench.dem +//div0-stable
-./all clean -r -f
 (
-       cd darkplaces
-       git checkout master || git checkout -t origin/master || exit 1
-)
-./all compile -r
-./all run "$@" -nohome -benchmarkruns 3 -benchmark demos/the-big-keybench.dem +//master
+       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
 
@@ -46,7 +52,7 @@ 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 following info:"
+echo " - the file "
 cat data/benchmark.log
 echo
 echo "Thank you"