projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4afae87
)
progs/gallium/unit: Use the shortened name to reconstruct the function being tested.
author
José Fonseca
<jfonseca@vmware.com>
Sat, 6 Mar 2010 12:47:01 +0000
(12:47 +0000)
committer
José Fonseca
<jfonseca@vmware.com>
Sat, 6 Mar 2010 12:47:01 +0000
(12:47 +0000)
progs/gallium/unit/u_format_test.c
patch
|
blob
|
history
diff --git
a/progs/gallium/unit/u_format_test.c
b/progs/gallium/unit/u_format_test.c
index f48fe4a13fa10da463c76c1b7d55e29331239c5f..bdbe443554ec0a96760ed696edba055e70843554 100644
(file)
--- a/
progs/gallium/unit/u_format_test.c
+++ b/
progs/gallium/unit/u_format_test.c
@@
-714,7
+714,7
@@
test_one(test_func_t func, const char *suffix)
if (test_cases[i].format != last_format) {
const struct util_format_description *format_desc;
format_desc = util_format_description(test_cases[i].format);
- printf("Testing
%s.%s ...\n", format_desc->
name, suffix);
+ printf("Testing
util_format_%s_%s ...\n", format_desc->short_
name, suffix);
last_format = test_cases[i].format;
}