diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2008-08-11 21:12:45 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2008-08-13 21:54:59 +0100 |
commit | 436c0c8be28546813139f391a62303d4c1894fc3 (patch) | |
tree | 7134b42ba4af4da886f8bd7906f4d6a144d1a134 /test/pthread-show-text.c | |
parent | c73b3e43e120065e40d8fc48c9bdbd88ebe8ab40 (diff) |
[test] Preparatory work for running under memfault.
In order to run under memfault, the framework is first extended to handle
running concurrent tests - i.e. multi-threading. (Not that this is a
requirement for memfault, instead it shares a common goal of storing
per-test data). To that end all the global data is moved into a per-test
context and the targets are adjusted to avoid overlap on shared, global
resources (such as output files and frame buffers). In order to preserve
the simplicity of the standard draw routines, the context is not passed
explicitly as a parameter to the routines, but is instead attached to the
cairo_t via the user_data.
For the masochist, to enable the tests to be run across multiple threads
simply set the environment variable CAIRO_TEST_NUM_THREADS to the desired
number.
In the long run, we can hope the need for memfault (runtime testing of
error paths) will be mitigated by static analysis. A promising candidate
for this task would appear to be http://hal.cs.berkeley.edu/cil/.
Diffstat (limited to 'test/pthread-show-text.c')
-rw-r--r-- | test/pthread-show-text.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/test/pthread-show-text.c b/test/pthread-show-text.c index 0f0ec891..daf04c38 100644 --- a/test/pthread-show-text.c +++ b/test/pthread-show-text.c @@ -75,6 +75,7 @@ start (void *closure) int main (int argc, char *argv[]) { + cairo_test_context_t ctx; int err; int i, num_threads; pthread_t *pthread; @@ -85,16 +86,16 @@ main (int argc, char *argv[]) num_threads = NUM_THREADS_DEFAULT; } - cairo_test_init ("pthread-show-text"); - - cairo_test_log ("Running with %d threads.\n", num_threads); + cairo_test_init (&ctx, "pthread-show-text"); + 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); if (err) { - cairo_test_log ("pthread_create failed: %s\n", strerror(err)); + cairo_test_log (&ctx, "pthread_create failed: %s\n", strerror(err)); + cairo_test_fini (&ctx); return CAIRO_TEST_FAILURE; } } @@ -104,7 +105,7 @@ main (int argc, char *argv[]) free (pthread); - cairo_test_fini (); + cairo_test_fini (&ctx); return CAIRO_TEST_SUCCESS; } |