summaryrefslogtreecommitdiff
path: root/test/cairo-test.h
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2008-08-12 13:33:04 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2008-08-13 21:55:19 +0100
commitd56ea9cc879650db0ad2e6b05e483f30f9f21566 (patch)
treef58334bf9ca6d3eef3ef0e7f5813c8b211f3ddac /test/cairo-test.h
parentf85a4aec1f94f8fbd8e4db770ff1f70c3286fc90 (diff)
downloadcairo-d56ea9cc879650db0ad2e6b05e483f30f9f21566.tar.gz
[test] Set CAIRO_TEST_UNTESTED to 77
77 is the magic exit code used by automake to indicate a skipped test, so by using it we can get a slightly more informative test log.
Diffstat (limited to 'test/cairo-test.h')
-rw-r--r--test/cairo-test.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cairo-test.h b/test/cairo-test.h
index 4c3cbced1..aff8079d2 100644
--- a/test/cairo-test.h
+++ b/test/cairo-test.h
@@ -62,8 +62,8 @@ typedef unsigned __int64 uint64_t;
typedef enum cairo_test_status {
CAIRO_TEST_SUCCESS = 0,
CAIRO_TEST_FAILURE,
- CAIRO_TEST_UNTESTED,
- CAIRO_TEST_CRASHED
+ CAIRO_TEST_CRASHED,
+ CAIRO_TEST_UNTESTED = 77 /* match automake's skipped exit status */
} cairo_test_status_t;
typedef struct _cairo_test_context cairo_test_context_t;