Have the tests depend on -L for the load-path, for portability.

This commit is contained in:
Dimitri Fontaine 2011-09-23 11:33:30 +02:00
parent c1129b79d5
commit 2f0170612e
5 changed files with 1 additions and 5 deletions

View File

@ -11,7 +11,7 @@ Typical run:
mkdir -p /tmp/test/.emacs.d
rm -rf /tmp/test/.emacs.d/el-get/
HOME=/tmp/test /Applications/Emacs.app/Contents/MacOS/Emacs -Q -batch -l test/el-get-issue-303.el
HOME=/tmp/test /usr/bin/emacs-snapshot-gtk -Q -batch -L . -l test/el-get-issue-303.el
At the moment you need to run the el-get-issue scripts with some known
working el-get version to know what to expect, and you probably need to have

View File

@ -5,7 +5,6 @@
(let ((debug-on-error t)
;; (el-get-byte-compile nil)
(el-get-verbose t))
(add-to-list 'load-path "/Users/dim/dev/emacs/el-get")
(require 'el-get)
(el-get 'sync 'yasnippet))

View File

@ -6,7 +6,6 @@
;; path.
(let ((debug-on-error t))
(add-to-list 'load-path "/Users/dim/dev/emacs/el-get")
(setq el-get-byte-compile nil
el-get-verbose t)
(require 'el-get)

View File

@ -8,7 +8,6 @@
;; recipe or to make el-get-init respect the :depends clause.
(let ((debug-on-error t))
(add-to-list 'load-path "/Users/dim/dev/emacs/el-get")
(setq el-get-byte-compile nil
el-get-verbose t)
(require 'el-get)

View File

@ -13,6 +13,5 @@
(unichars)
:type http :url "http://nwalsh.com/emacs/xmlchars/xmlunicode.el")
(:name unichars :type http :url "http://nwalsh.com/emacs/xmlchars/unichars.el"))))
(add-to-list 'load-path "/Users/dim/dev/emacs/el-get")
(require 'el-get)
(el-get-install "xmlunicode"))