summaryrefslogtreecommitdiff
path: root/src/tests/asyncq-test.c
diff options
context:
space:
mode:
authorMaarten Bosmans <mkbosmans@gmail.com>2011-10-04 14:01:03 +0200
committerArun Raghavan <arun.raghavan@collabora.co.uk>2011-11-02 19:26:23 +0530
commit681aaf7a9a3eaa9e087b276ca1b52a2964e24181 (patch)
tree2d6bc748b5987f37c00ff91038ef1f1814ba1e2e /src/tests/asyncq-test.c
parent6be5515e6a456abf35795452bd824e74dbb43dc8 (diff)
tests: More useful output of make check
Instead of spilling thousands of lines of output, make check now runs the test-suite in about 100 lines or so. If running under make check, the output of tests is reduced. The MAKE_CHECK environment variable is used for this, so that when running the test manually, the full output is still shown. Furthermore, pa_log is used consistently instead of printf, so that all test output goes to stderr by default. Colored output from make check goes to stdout.
Diffstat (limited to 'src/tests/asyncq-test.c')
-rw-r--r--src/tests/asyncq-test.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/tests/asyncq-test.c b/src/tests/asyncq-test.c
index 46bac9f42..6ac8cba68 100644
--- a/src/tests/asyncq-test.c
+++ b/src/tests/asyncq-test.c
@@ -36,12 +36,12 @@ static void producer(void *_q) {
int i;
for (i = 0; i < 1000; i++) {
- printf("pushing %i\n", i);
+ pa_log_debug("pushing %i", i);
pa_asyncq_push(q, PA_UINT_TO_PTR(i+1), 1);
}
pa_asyncq_push(q, PA_UINT_TO_PTR(-1), TRUE);
- printf("pushed end\n");
+ pa_log_debug("pushed end");
}
static void consumer(void *_q) {
@@ -59,16 +59,19 @@ static void consumer(void *_q) {
pa_assert(p == PA_UINT_TO_PTR(i+1));
- printf("popped %i\n", i);
+ pa_log_debug("popped %i", i);
}
- printf("popped end\n");
+ pa_log_debug("popped end");
}
int main(int argc, char *argv[]) {
pa_asyncq *q;
pa_thread *t1, *t2;
+ if (!getenv("MAKE_CHECK"))
+ pa_log_set_level(PA_LOG_DEBUG);
+
pa_assert_se(q = pa_asyncq_new(0));
pa_assert_se(t1 = pa_thread_new("producer", producer, q));