diff options
author | Dmitry Gutov <dgutov@yandex.ru> | 2013-06-27 13:26:54 +0400 |
---|---|---|
committer | Dmitry Gutov <dgutov@yandex.ru> | 2013-06-27 13:26:54 +0400 |
commit | 9ea5cf9fbd3c27ec743b6c42f64205054c8a130f (patch) | |
tree | 4b6f61a911f05f3b36ef45d6999302ab2b1c0a1d /test/automated/Makefile.in | |
parent | 1e0726398dd27532178fd0fb491872e7e2be396c (diff) |
* automated/Makefile.in (setwins): Include the 'data' subdirectory.
* automated/package-x-test.el: New file.
* automated/package-test.el: New file.
* automated/data/package: New directory, with test examples.
* lisp/emacs-lisp/package-x.el (package-upload-buffer-internal): Adapt
to `package-desc-version' being a list. Use
`package--ac-desc-version' to retrieve version from a package
archive element.
Diffstat (limited to 'test/automated/Makefile.in')
-rw-r--r-- | test/automated/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/automated/Makefile.in b/test/automated/Makefile.in index 1a4e3c9b1e..6e7111e589 100644 --- a/test/automated/Makefile.in +++ b/test/automated/Makefile.in @@ -50,7 +50,7 @@ emacs = EMACSLOADPATH=$(lispsrc):$(test) LC_ALL=C $(EMACS) $(EMACSOPT) # Common command to find subdirectories setwins=subdirs=`find . -type d -print`; \ for file in $$subdirs; do \ - case $$file in */.* | */.*/* | */=* ) ;; \ + case $$file in */.* | */.*/* | */=* | ./data* ) ;; \ *) wins="$$wins $$file" ;; \ esac; \ done |