diff options
author | Adrian Johnson <ajohnson@redneon.com> | 2008-11-02 15:05:07 +1030 |
---|---|---|
committer | Adrian Johnson <ajohnson@redneon.com> | 2008-11-02 15:05:07 +1030 |
commit | ed2081d97401741db10b0244eaba7ff31ae63346 (patch) | |
tree | c025b1a2e93191dae195301995de4701c50a51a9 /test/cairo-test.c | |
parent | 81c3009c077ddab40df052bffaa646526e2b8dfc (diff) |
Specify a background color for XFAIL text
To improve readability on terminals with a white background.
Diffstat (limited to 'test/cairo-test.c')
-rw-r--r-- | test/cairo-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cairo-test.c b/test/cairo-test.c index 11ca650d..90ca0af5 100644 --- a/test/cairo-test.c +++ b/test/cairo-test.c @@ -192,7 +192,7 @@ _cairo_test_init (cairo_test_context_t *ctx, #ifdef HAVE_UNISTD_H if (*fail_face == '\0' && isatty (2)) { fail_face = "\033[41;37;1m"; - xfail_face = "\033[33;1m"; + xfail_face = "\033[43;37;1m"; normal_face = "\033[m"; if (isatty (1)) print_fail_on_stdout = FALSE; |