summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-07-29 12:51:34 -0600
committerBrian Paul <brianp@vmware.com>2010-07-29 12:51:45 -0600
commit330852b3b33883b8fb22ce8c67efae79e64ce273 (patch)
tree89c8d63f594b2c741c422f6a91bdae4c164495e1
parentd05cb9f0187984e461b41eb1ba6ca2adf0593c74 (diff)
llvmpipe: also test the new lp_build_assert() function
-rw-r--r--src/gallium/drivers/llvmpipe/lp_test_printf.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_test_printf.c b/src/gallium/drivers/llvmpipe/lp_test_printf.c
index 62041f0301a..a3447bf53f9 100644
--- a/src/gallium/drivers/llvmpipe/lp_test_printf.c
+++ b/src/gallium/drivers/llvmpipe/lp_test_printf.c
@@ -32,6 +32,7 @@
#include "util/u_pointer.h"
#include "gallivm/lp_bld.h"
#include "gallivm/lp_bld_init.h"
+#include "gallivm/lp_bld_assert.h"
#include "gallivm/lp_bld_printf.h"
#include <llvm-c/Analysis.h>
@@ -76,6 +77,9 @@ add_printf_test(LLVMModuleRef module)
lp_build_printf(builder, "print 5 6: %d %d\n", LLVMConstInt(LLVMInt32Type(), 5, 0),
LLVMConstInt(LLVMInt32Type(), 6, 0));
+ /* Also test lp_build_assert(). This should not fail. */
+ lp_build_assert(builder, LLVMConstInt(LLVMInt32Type(), 1, 0), "assert(1)");
+
LLVMBuildRetVoid(builder);
LLVMDisposeBuilder(builder);
return func;