aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/ChangeLog4
-rw-r--r--test/automated/data/flymake/Makefile5
2 files changed, 8 insertions, 1 deletions
diff --git a/test/ChangeLog b/test/ChangeLog
index 6fa11867a5e..78a03d1b335 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,7 +1,11 @@
12014-12-16 Glenn Morris <rgm@gnu.org> 12014-12-16 Glenn Morris <rgm@gnu.org>
2 2
3 * automated/data/flymake/Makefile (check-syntax):
4 Prevent colorized gcc output from confusing flymake.
5
3 * automated/flymake-tests.el (flymake-tests-data-directory): 6 * automated/flymake-tests.el (flymake-tests-data-directory):
4 Change from flymake/warnpred to more standard data/flymake. 7 Change from flymake/warnpred to more standard data/flymake.
8 * automated/flymake/warnpred/: Rename to automated/data/flymake/.
5 9
62014-12-11 Michael Albinus <michael.albinus@gmx.de> 102014-12-11 Michael Albinus <michael.albinus@gmx.de>
7 11
diff --git a/test/automated/data/flymake/Makefile b/test/automated/data/flymake/Makefile
index 33af51c3337..a92db78b46f 100644
--- a/test/automated/data/flymake/Makefile
+++ b/test/automated/data/flymake/Makefile
@@ -2,7 +2,10 @@
2 2
3CC_OPTS = -Wall 3CC_OPTS = -Wall
4 4
5## Recent gcc's (e.g. 4.8.2 on RHEL7) can automatically colorize their output,
6## which can confuse flymake. Set GCC_COLORS to disable that.
7## TODO is this something that should be fixed in flymake?
5check-syntax: 8check-syntax:
6 $(CC) $(CC_OPTS) ${CHK_SOURCES} 9 GCC_COLORS= $(CC) $(CC_OPTS) ${CHK_SOURCES}
7 10
8# eof 11# eof