summaryrefslogtreecommitdiff
path: root/test/pthread-show-text.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2008-09-03 16:38:03 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2008-10-31 12:30:11 +0000
commite90073f7ddc6f461a935bc360c409b04f1fe9f74 (patch)
treeefda94d1ecd13143cdad23f14552661165e7601e /test/pthread-show-text.c
parent8457972d40088cda165f31fdd7bd9b4c19c6e095 (diff)
downloadcairo-e90073f7ddc6f461a935bc360c409b04f1fe9f74.tar.gz
[test] Build test suite into single binary.
Avoid calling libtool to link every single test case, by building just one binary from all the sources. This binary is then given the task of choosing tests to run (based on user selection and individual test requirement), forking each test into its own process and accumulating the results.
Diffstat (limited to 'test/pthread-show-text.c')
-rw-r--r--test/pthread-show-text.c41
1 files changed, 22 insertions, 19 deletions
diff --git a/test/pthread-show-text.c b/test/pthread-show-text.c
index d61201914..d95ce20ce 100644
--- a/test/pthread-show-text.c
+++ b/test/pthread-show-text.c
@@ -71,31 +71,29 @@ start (void *closure)
return NULL;
}
-int
-main (int argc, char *argv[])
+static cairo_test_status_t
+preamble (cairo_test_context_t *ctx)
{
- cairo_test_context_t ctx;
- int err;
- int i, num_threads;
pthread_t *pthread;
+ int i, num_threads;
+ cairo_test_status_t status = CAIRO_TEST_SUCCESS;
- if (argc > 1) {
- num_threads = atoi (argv[1]);
- } else {
+ num_threads = 0;
+ if (getenv ("CAIRO_TEST_NUM_THREADS"))
+ num_threads = atoi (getenv ("CAIRO_TEST_NUM_THREADS"));
+ if (num_threads == 0)
num_threads = NUM_THREADS_DEFAULT;
- }
-
- cairo_test_init (&ctx, "pthread-show-text");
- cairo_test_log (&ctx, "Running with %d threads.\n", num_threads);
+ cairo_test_log (ctx, "Running with %d threads.\n", num_threads);
pthread = xmalloc (num_threads * sizeof (pthread_t));
for (i = 0; i < num_threads; i++) {
- err = pthread_create (&pthread[i], NULL, start, NULL);
+ int err = pthread_create (&pthread[i], NULL, start, NULL);
if (err) {
- cairo_test_log (&ctx, "pthread_create failed: %s\n", strerror(err));
- cairo_test_fini (&ctx);
- return CAIRO_TEST_FAILURE;
+ cairo_test_log (ctx, "pthread_create failed: %s\n", strerror(err));
+ num_threads = i;
+ status = CAIRO_TEST_FAILURE;
+ break;
}
}
@@ -104,7 +102,12 @@ main (int argc, char *argv[])
free (pthread);
- cairo_test_fini (&ctx);
-
- return CAIRO_TEST_SUCCESS;
+ return status;
}
+
+CAIRO_TEST (pthread_show_text,
+ "Concurrent stress test of the cairo_show_text().",
+ "thread, text", /* keywords */
+ NULL, /* requirements */
+ 0, 0,
+ preamble, NULL)