diff options
author | Stefan Kangas <stefan@marxist.se> | 2020-10-23 12:56:39 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2020-10-23 12:58:01 +0200 |
commit | 22e5239c172ccc603b1f0def87aeabc3ccdb61c6 (patch) | |
tree | 6b79ef1d436a297ba8ea16732447451ad8ea6e72 /test/lisp/emacs-lisp/package-tests.el | |
parent | c57a60ee958821790a1fe4220a2c3837b664e9be (diff) | |
download | emacs-22e5239c172ccc603b1f0def87aeabc3ccdb61c6.tar.gz emacs-22e5239c172ccc603b1f0def87aeabc3ccdb61c6.tar.bz2 emacs-22e5239c172ccc603b1f0def87aeabc3ccdb61c6.zip |
Clean up temporary files after package tests
* test/lisp/emacs-lisp/package-tests.el (with-package-test): Remove
temporary files after test. (Bug#43359)
Diffstat (limited to 'test/lisp/emacs-lisp/package-tests.el')
-rw-r--r-- | test/lisp/emacs-lisp/package-tests.el | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/lisp/emacs-lisp/package-tests.el b/test/lisp/emacs-lisp/package-tests.el index 155a8e6fce9..23267545f83 100644 --- a/test/lisp/emacs-lisp/package-tests.el +++ b/test/lisp/emacs-lisp/package-tests.el @@ -151,6 +151,15 @@ `(insert-file-contents ,file)) ,@body))) + (when ,upload-base + (dolist (f '("archive-contents" + "simple-single-1.3.el" + "simple-single-1.4.el" + "simple-single-readme.txt")) + (ignore-errors + (delete-file + (expand-file-name f package-test-archive-upload-base)))) + (delete-directory package-test-archive-upload-base)) (when (file-directory-p package-test-user-dir) (delete-directory package-test-user-dir t)) |