* test/automated/flymake-tests.el (flymake-tests-data-directory):
Change from flymake/warnpred to more standard data/flymake.
* .gitignore: Update for relocated flymake test data.
Makefile
!admin/charsets/Makefile
!etc/refcards/Makefile
-!test/automated/flymake/warnpred/Makefile
+!test/automated/data/flymake/Makefile
!test/indent/Makefile
makefile
/*.cache
+2014-12-16 Glenn Morris <rgm@gnu.org>
+
+ * automated/flymake-tests.el (flymake-tests-data-directory):
+ Change from flymake/warnpred to more standard data/flymake.
+
2014-12-11 Michael Albinus <michael.albinus@gmx.de>
* automated/vc-tests.el (vc-test--revision-granularity-function):
--- /dev/null
+# Makefile for flymake tests
+
+CC_OPTS = -Wall
+
+check-syntax:
+ $(CC) $(CC_OPTS) ${CHK_SOURCES}
+
+# eof
--- /dev/null
+int main()
+{
+ char c = 1000;
+ return c;
+}
--- /dev/null
+@arr = [1,2,3,4];
+@arr[1] = -1;
(require 'flymake)
(defvar flymake-tests-data-directory
- (expand-file-name "flymake/warnpred" (getenv "EMACS_TEST_DIRECTORY"))
+ (expand-file-name "data/flymake" (getenv "EMACS_TEST_DIRECTORY"))
"Directory containing flymake test data.")
\f
+++ /dev/null
-# Makefile for flymake tests
-
-CC_OPTS = -Wall
-
-check-syntax:
- $(CC) $(CC_OPTS) ${CHK_SOURCES}
-
-# eof
+++ /dev/null
-int main()
-{
- char c = 1000;
- return c;
-}
+++ /dev/null
-@arr = [1,2,3,4];
-@arr[1] = -1;