Mesa (master): util: Flush stdout on util_format.

Jose Fonseca jrfonseca at kemper.freedesktop.org
Wed Sep 22 14:02:54 UTC 2010


Module: Mesa
Branch: master
Commit: 256b9d99fb704d6c11d6242b7ec40206963f201e
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=256b9d99fb704d6c11d6242b7ec40206963f201e

Author: José Fonseca <jfonseca at vmware.com>
Date:   Sat Sep 11 13:20:27 2010 +0100

util: Flush stdout on util_format.

---

 src/gallium/tests/unit/u_format_test.c |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/gallium/tests/unit/u_format_test.c b/src/gallium/tests/unit/u_format_test.c
index cfde6af..ba0dd17 100644
--- a/src/gallium/tests/unit/u_format_test.c
+++ b/src/gallium/tests/unit/u_format_test.c
@@ -67,6 +67,7 @@ print_packed(const struct util_format_description *format_desc,
       sep = " ";
    }
    printf("%s", suffix);
+   fflush(stdout);
 }
 
 
@@ -88,6 +89,7 @@ print_unpacked_rgba_doubl(const struct util_format_description *format_desc,
       sep = ",\n";
    }
    printf("%s", suffix);
+   fflush(stdout);
 }
 
 
@@ -109,6 +111,7 @@ print_unpacked_rgba_float(const struct util_format_description *format_desc,
       sep = ",\n";
    }
    printf("%s", suffix);
+   fflush(stdout);
 }
 
 
@@ -129,6 +132,7 @@ print_unpacked_rgba_8unorm(const struct util_format_description *format_desc,
       }
    }
    printf("%s", suffix);
+   fflush(stdout);
 }
 
 
@@ -150,6 +154,7 @@ print_unpacked_z_float(const struct util_format_description *format_desc,
       sep = ",\n";
    }
    printf("%s", suffix);
+   fflush(stdout);
 }
 
 
@@ -170,6 +175,7 @@ print_unpacked_z_32unorm(const struct util_format_description *format_desc,
       }
    }
    printf("%s", suffix);
+   fflush(stdout);
 }
 
 
@@ -190,6 +196,7 @@ print_unpacked_s_8uscaled(const struct util_format_description *format_desc,
       }
    }
    printf("%s", suffix);
+   fflush(stdout);
 }
 
 
@@ -635,6 +642,7 @@ test_one_func(const struct util_format_description *format_desc,
 
    printf("Testing util_format_%s_%s ...\n",
           format_desc->short_name, suffix);
+   fflush(stdout);
 
    for (i = 0; i < util_format_nr_test_cases; ++i) {
       const struct util_format_test_case *test = &util_format_test_cases[i];




More information about the mesa-commit mailing list