summaryrefslogtreecommitdiffstats
path: root/src/gallium
diff options
context:
space:
mode:
authorJames Benton <[email protected]>2012-05-18 16:17:26 +0100
committerJosé Fonseca <[email protected]>2012-05-21 20:24:53 +0100
commit8a933e36d1f91d3b8a5377a8d23c2dcdd403e8ad (patch)
tree6c037b484d3efccec3d8dd86b46c6d00d3e6c72e /src/gallium
parent383c1b649bd15aac636de5723d1283f2e9fd45e7 (diff)
llvmpipe: Added a error counter to lp_test_conv.
Useful for keeping track of progress when fixing errors! Signed-off-by: José Fonseca <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_test_conv.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_test_conv.c b/src/gallium/drivers/llvmpipe/lp_test_conv.c
index 307b8d999b0..0dcb5422887 100644
--- a/src/gallium/drivers/llvmpipe/lp_test_conv.c
+++ b/src/gallium/drivers/llvmpipe/lp_test_conv.c
@@ -386,6 +386,7 @@ test_all(struct gallivm_state *gallivm, unsigned verbose, FILE *fp)
const struct lp_type *src_type;
const struct lp_type *dst_type;
boolean success = TRUE;
+ int error_count = 0;
for(src_type = conv_types; src_type < &conv_types[num_types]; ++src_type) {
for(dst_type = conv_types; dst_type < &conv_types[num_types]; ++dst_type) {
@@ -393,12 +394,15 @@ test_all(struct gallivm_state *gallivm, unsigned verbose, FILE *fp)
if(src_type == dst_type)
continue;
- if(!test_one(gallivm, verbose, fp, *src_type, *dst_type))
- success = FALSE;
-
+ if(!test_one(gallivm, verbose, fp, *src_type, *dst_type)){
+ success = FALSE;
+ ++error_count;
+ }
}
}
+ fprintf(stderr, "%d failures\n", error_count);
+
return success;
}