]> code.delx.au - gnu-emacs/commitdiff
Fix package tests when TMPDIR is in HOME
authorDmitry Gutov <dgutov@yandex.ru>
Fri, 23 Jan 2015 00:50:15 +0000 (02:50 +0200)
committerDmitry Gutov <dgutov@yandex.ru>
Fri, 23 Jan 2015 00:50:15 +0000 (02:50 +0200)
Fixes: debbugs:19657
* test/automated/package-test.el (with-package-test):
Bind `abbreviated-home-dir' to nil.
(package-test-describe-package, package-test-signed):
Expect abbreviated directory names.

test/ChangeLog
test/automated/package-test.el

index af36b5d2bde84f274199922d8d3b03aaca747ab5..5a4e616f6c6c251220fcfdae068a4666486ac33e 100644 (file)
@@ -1,4 +1,12 @@
-2015-01-20  Jorgen Schaefer  <contact@jorgenschaefer.de>
+2015-01-23  Dmitry Gutov  <dgutov@yandex.ru>
+
+       Fix package tests when TMPDIR is in HOME.  (Bug#19657)
+       * automated/package-test.el (with-package-test):
+       Bind `abbreviated-home-dir' to nil.
+       (package-test-describe-package, package-test-signed):
+       Expect abbreviated directory names.
+
+2015-01-22  Jorgen Schaefer  <contact@jorgenschaefer.de>
 
        * automated/package-test.el (package-test-install-prioritized):
        Re-add the test case and add priority to the correct repository
index 3ea13dee4ade60048c8676b3bec0bdd4d1c16fba..a8488652c2fb7c7bdcb0015828ae956abd4db664 100644 (file)
@@ -95,6 +95,7 @@
           (package-archives `(("gnu" . ,package-test-data-dir)))
           (old-yes-no-defn (symbol-function 'yes-or-no-p))
           (default-directory package-test-file-dir)
+          abbreviated-home-dir
           package--initialized
           package-alist
           ,@(if update-news
@@ -339,8 +340,7 @@ Must called from within a `tar-mode' buffer."
      (goto-char (point-min))
      (should (search-forward "simple-single is an installed package." nil t))
      (should (search-forward
-              (format "Status: Installed in `%s/' (unsigned)."
-                      (expand-file-name "simple-single-1.3" package-user-dir))
+              "Status: Installed in `~/simple-single-1.3/' (unsigned)."
               nil t))
      (should (search-forward "Version: 1.3" nil t))
      (should (search-forward "Summary: A single-file package with no dependencies"
@@ -409,8 +409,7 @@ Must called from within a `tar-mode' buffer."
        (goto-char (point-min))
        (should (search-forward "signed-good is an installed package." nil t))
        (should (search-forward
-               (format "Status: Installed in `%s/'."
-                       (expand-file-name "signed-good-1.0" package-user-dir))
+               "Status: Installed in `~/signed-good-1.0/'."
                nil t))))))