summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_test_blend.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-06-04 17:00:48 -0600
committerBrian Paul <brianp@vmware.com>2010-06-04 17:01:24 -0600
commit4f067ada47bfeef792e5adbed4f3e215b704212a (patch)
tree907fadd45a5e16e5d9c6df7a2d39bf73fa5deeb8 /src/gallium/drivers/llvmpipe/lp_test_blend.c
parentf0ff214bee64a705d3ef6610e9dc25bc1a46a460 (diff)
llvmpipe: new -s option to run single test
Put specific test code in the test_single() function and pass -s to execute that code.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_test_blend.c')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_test_blend.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_test_blend.c b/src/gallium/drivers/llvmpipe/lp_test_blend.c
index 557eb8e3e6..0c95555655 100644
--- a/src/gallium/drivers/llvmpipe/lp_test_blend.c
+++ b/src/gallium/drivers/llvmpipe/lp_test_blend.c
@@ -895,3 +895,11 @@ test_some(unsigned verbose, FILE *fp, unsigned long n)
return success;
}
+
+
+boolean
+test_single(unsigned verbose, FILE *fp)
+{
+ printf("no test_single()");
+ return TRUE;
+}