diff options
author | Vinson Lee <[email protected]> | 2012-10-24 23:25:08 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2012-10-25 23:09:59 -0700 |
commit | 8cb2a4a7f506ea08d4adab0aeda5fcf753cd95e5 (patch) | |
tree | 218fee8dd541879c75ada6425612df95520a59fb /src/gallium/tests/unit | |
parent | 8fb4b1dce156d02a0907925364d8945915c29bcf (diff) |
tests: Use printf instead of debug_printf in u_format_compatible_test.
Use printf instead of debug_printf to be consistent with print
statements in rest of unit tests.
This also fixes the lack of print output with the MinGW build of
u_format_compatible_test.
Signed-off-by: Vinson Lee <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/tests/unit')
-rw-r--r-- | src/gallium/tests/unit/u_format_compatible_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/tests/unit/u_format_compatible_test.c b/src/gallium/tests/unit/u_format_compatible_test.c index c655c35f20a..de97bc270ae 100644 --- a/src/gallium/tests/unit/u_format_compatible_test.c +++ b/src/gallium/tests/unit/u_format_compatible_test.c @@ -57,7 +57,7 @@ test_all(void) } if (util_is_format_compatible(src_format_desc, dst_format_desc)) { - debug_printf("%s -> %s\n", src_format_desc->short_name, dst_format_desc->short_name); + printf("%s -> %s\n", src_format_desc->short_name, dst_format_desc->short_name); } } } |