aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGlenn Morris2014-12-15 21:08:40 -0500
committerGlenn Morris2014-12-15 21:08:40 -0500
commit1fc1f89341daa10f9318f60d03493b5bbfd7e12e (patch)
tree53ee1f3acad24500898a0b01c7570dc191032dd7 /test
parente2aec9bee32236f931df57ae621eb2666408da48 (diff)
downloademacs-1fc1f89341daa10f9318f60d03493b5bbfd7e12e.tar.gz
emacs-1fc1f89341daa10f9318f60d03493b5bbfd7e12e.zip
Disable gcc color in test/automated/data/flymake/Makefile
* test/automated/data/flymake/Makefile (check-syntax): Prevent colorized gcc output from confusing flymake.
Diffstat (limited to 'test')
-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