Skip to content

Instantly share code, notes, and snippets.

@gilgamesh2k
Last active December 20, 2015 14:39
Show Gist options
  • Save gilgamesh2k/6148820 to your computer and use it in GitHub Desktop.
Save gilgamesh2k/6148820 to your computer and use it in GitHub Desktop.
Customize GpuTest benchmark set
#!/bin/bash
tests=$(
zenity --list --text "Choose tests for benchmark" --checklist\
--height 250\
--column "Pick" --column "Tests"\
TRUE triangle\
TRUE plot3d\
TRUE pixmark_piano\
TRUE fur\
--separator=":"\
)
IFS=:
for testname in $tests
do
./GpuTest /test=$testname /width=1680 /height=1050 /fullscreen /benchmark
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment