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/long-lines.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/long-lines.c')
-rw-r--r-- | test/long-lines.c | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/test/long-lines.c b/test/long-lines.c index 8b189b2b..dfbbe0dc 100644 --- a/test/long-lines.c +++ b/test/long-lines.c @@ -21,18 +21,18 @@ * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * * Authors: Carl D. Worth <cworth@cworth.org> - * Emmanuel Pacaud <emmanuel.pacaud@lapp.in2p3.fr> + * Emmanuel Pacaud <emmanuel.pacaud@lapp.in2p3.fr> */ #include "cairo-test.h" -#define LINE_WIDTH 1. -#define SIZE 10 +#define LINE_WIDTH 1. +#define SIZE 10 #define LINE_NBR 6 static cairo_test_draw_function_t draw; -cairo_test_t test = { +static const cairo_test_t test = { "long-lines", "Test long lines" "\nLong lines are not drawn due to the limitations of the internal 16.16 fixed-point coordinates", @@ -45,12 +45,12 @@ struct { double length; double red, green, blue; } lines[LINE_NBR] = { - { 100.0, 1.0, 0.0, 0.0 }, - { 10000.0, 0.0, 1.0, 0.0 }, - { 100000.0, 0.0, 0.0, 1.0 }, - { 1000000.0, 1.0, 1.0, 0.0 }, - { 10000000.0, 0.0, 1.0, 1.0 }, - {100000000.0, 1.0, 0.0, 1.0 } + { 100.0, 1.0, 0.0, 0.0 }, + { 10000.0, 0.0, 1.0, 0.0 }, + { 100000.0, 0.0, 0.0, 1.0 }, + { 1000000.0, 1.0, 1.0, 0.0 }, + { 10000000.0, 0.0, 1.0, 1.0 }, + { 100000000.0, 1.0, 0.0, 1.0 } }; static cairo_test_status_t @@ -65,7 +65,6 @@ draw (cairo_t *cr, int width, int height) cairo_paint (cr); cairo_restore (cr); - cairo_set_line_width (cr, LINE_WIDTH); pos = SIZE + .5; |