+2016-06-13 David Malcolm <dmalcolm@redhat.com>
+
+ * pretty-print.c (assert_pp_format_colored): Skip the test if
+ GCC_COLORS is set.
+ (test_pp_format): Remove comment about GCC_COLORS.
+
2016-06-13 David Malcolm <dmalcolm@redhat.com>
* input.c (test_reading_source_line): Use SELFTEST_LOCATION.
assert_pp_format_colored (const location &loc, const char *expected,
const char *fmt, ...)
{
+ /* The tests of colorization assume the default color scheme.
+ If GCC_COLORS is set, then the colors have potentially been
+ overridden; skip the test. */
+ if (getenv ("GCC_COLORS"))
+ return;
+
va_list ap;
va_start (ap, fmt);
ASSERT_PP_FORMAT_2 ("normal colored normal 12345678",
"normal %rcolored%R normal %x",
"error", 0x12345678);
- /* The following assumes an empty value for GCC_COLORS. */
assert_pp_format_colored
(SELFTEST_LOCATION,
"normal \33[01;31m\33[Kcolored\33[m\33[K normal 12345678",