summaryrefslogtreecommitdiff
path: root/tests.d/beignet/luxmark.test
diff options
context:
space:
mode:
Diffstat (limited to 'tests.d/beignet/luxmark.test')
-rw-r--r--tests.d/beignet/luxmark.test20
1 files changed, 0 insertions, 20 deletions
diff --git a/tests.d/beignet/luxmark.test b/tests.d/beignet/luxmark.test
deleted file mode 100644
index 69ea3ef..0000000
--- a/tests.d/beignet/luxmark.test
+++ /dev/null
@@ -1,20 +0,0 @@
-xdpyinfo >/dev/null 2>&1 || return 1 # LuxMark expects an X connection
-test -e "$LUXMARK_FOLDER/luxmark.bin" || return 1
-
-__luxmark__() {
- cd $LUXMARK_FOLDER # set me in test_options.sh!
- LD_LIBRARY_PATH=./lib:$LD_LIBRARY_PATH \
- run_bench 0 ./luxmark.bin --single-run --mode=BENCHMARK_OCL_GPU --scene=$1 \
- | awk '{print $2 }' || return 1
-}
-
-while read name scene; do
- test_name="$test_name luxmark:$name"
- eval "luxmark:${name}_run() { __luxmark__ $scene; }"
-done<<EOF
- LuxBall LUXBALL_HDR
- Microphone MICROPHONE
- Hotel HOTEL
-EOF
-
-test_exec_time=121