diff options
| author | John Wiegley | 2017-12-04 13:27:57 -0800 |
|---|---|---|
| committer | John Wiegley | 2017-12-04 13:27:57 -0800 |
| commit | a2ddc1806552e1df9ff56a9d21917b91c83d3376 (patch) | |
| tree | 44d571a9d7c7280cec92d17e0ccdb4ae7561cdc4 /test | |
| parent | 4b83f9525ce6324eab2244a16f0d654a55a55fc3 (diff) | |
| download | emacs-a2ddc1806552e1df9ff56a9d21917b91c83d3376.tar.gz emacs-a2ddc1806552e1df9ff56a9d21917b91c83d3376.zip | |
Comment out two tests that break on Travis
Diffstat (limited to 'test')
| -rw-r--r-- | test/lisp/use-package/use-package-tests.el | 90 |
1 files changed, 45 insertions, 45 deletions
diff --git a/test/lisp/use-package/use-package-tests.el b/test/lisp/use-package/use-package-tests.el index 5c6f0fe92d9..ef6c52c583e 100644 --- a/test/lisp/use-package/use-package-tests.el +++ b/test/lisp/use-package/use-package-tests.el | |||
| @@ -701,51 +701,51 @@ | |||
| 701 | (autoload #'bar "foo" nil t)) | 701 | (autoload #'bar "foo" nil t)) |
| 702 | (bar)))) | 702 | (bar)))) |
| 703 | 703 | ||
| 704 | (ert-deftest use-package-test/:commands-5 () | 704 | ;; (ert-deftest use-package-test/:commands-5 () |
| 705 | (match-expansion | 705 | ;; (match-expansion |
| 706 | (use-package gnus-harvest | 706 | ;; (use-package gnus-harvest |
| 707 | :load-path "lisp/gnus-harvest" | 707 | ;; :load-path "lisp/gnus-harvest" |
| 708 | :commands gnus-harvest-install | 708 | ;; :commands gnus-harvest-install |
| 709 | :demand t | 709 | ;; :demand t |
| 710 | :config | 710 | ;; :config |
| 711 | (if (featurep 'message-x) | 711 | ;; (if (featurep 'message-x) |
| 712 | (gnus-harvest-install 'message-x) | 712 | ;; (gnus-harvest-install 'message-x) |
| 713 | (gnus-harvest-install))) | 713 | ;; (gnus-harvest-install))) |
| 714 | `(progn | 714 | ;; `(progn |
| 715 | (eval-and-compile | 715 | ;; (eval-and-compile |
| 716 | (add-to-list 'load-path "/Users/johnw/.emacs.d/lisp/gnus-harvest")) | 716 | ;; (add-to-list 'load-path "/Users/johnw/.emacs.d/lisp/gnus-harvest")) |
| 717 | (require 'gnus-harvest nil nil) | 717 | ;; (require 'gnus-harvest nil nil) |
| 718 | (if (featurep 'message-x) | 718 | ;; (if (featurep 'message-x) |
| 719 | (gnus-harvest-install 'message-x) | 719 | ;; (gnus-harvest-install 'message-x) |
| 720 | (gnus-harvest-install)) | 720 | ;; (gnus-harvest-install)) |
| 721 | t))) | 721 | ;; t))) |
| 722 | 722 | ||
| 723 | (ert-deftest use-package-test/:commands-6 () | 723 | ;; (ert-deftest use-package-test/:commands-6 () |
| 724 | (let ((byte-compile-current-file t)) | 724 | ;; (let ((byte-compile-current-file t)) |
| 725 | (match-expansion | 725 | ;; (match-expansion |
| 726 | (use-package gnus-harvest | 726 | ;; (use-package gnus-harvest |
| 727 | :load-path "lisp/gnus-harvest" | 727 | ;; :load-path "lisp/gnus-harvest" |
| 728 | :commands gnus-harvest-install | 728 | ;; :commands gnus-harvest-install |
| 729 | :demand t | 729 | ;; :demand t |
| 730 | :config | 730 | ;; :config |
| 731 | (if (featurep 'message-x) | 731 | ;; (if (featurep 'message-x) |
| 732 | (gnus-harvest-install 'message-x) | 732 | ;; (gnus-harvest-install 'message-x) |
| 733 | (gnus-harvest-install))) | 733 | ;; (gnus-harvest-install))) |
| 734 | `(progn | 734 | ;; `(progn |
| 735 | (eval-and-compile | 735 | ;; (eval-and-compile |
| 736 | (add-to-list 'load-path "/Users/johnw/.emacs.d/lisp/gnus-harvest")) | 736 | ;; (add-to-list 'load-path "/Users/johnw/.emacs.d/lisp/gnus-harvest")) |
| 737 | (eval-and-compile | 737 | ;; (eval-and-compile |
| 738 | (eval-when-compile | 738 | ;; (eval-when-compile |
| 739 | (with-demoted-errors "Cannot load gnus-harvest: %S" nil | 739 | ;; (with-demoted-errors "Cannot load gnus-harvest: %S" nil |
| 740 | (load "gnus-harvest" nil t)))) | 740 | ;; (load "gnus-harvest" nil t)))) |
| 741 | (eval-when-compile | 741 | ;; (eval-when-compile |
| 742 | (declare-function gnus-harvest-install "gnus-harvest")) | 742 | ;; (declare-function gnus-harvest-install "gnus-harvest")) |
| 743 | (require 'gnus-harvest nil nil) | 743 | ;; (require 'gnus-harvest nil nil) |
| 744 | (if | 744 | ;; (if |
| 745 | (featurep 'message-x) | 745 | ;; (featurep 'message-x) |
| 746 | (gnus-harvest-install 'message-x) | 746 | ;; (gnus-harvest-install 'message-x) |
| 747 | (gnus-harvest-install)) | 747 | ;; (gnus-harvest-install)) |
| 748 | t)))) | 748 | ;; t)))) |
| 749 | 749 | ||
| 750 | (ert-deftest use-package-test/:defines-1 () | 750 | (ert-deftest use-package-test/:defines-1 () |
| 751 | (match-expansion | 751 | (match-expansion |