From: Andrea Corallo Date: Mon, 20 Jan 2020 21:57:11 +0000 (+0000) Subject: Always force debug 0 for bootstrap test X-Git-Tag: emacs-28.0.90~2727^2~845 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e83bc2503b6639542e85a859f88642bde3411bf5;p=emacs.git Always force debug 0 for bootstrap test Debug symbols would make it fail otherwise. --- diff --git a/test/src/comp-tests.el b/test/src/comp-tests.el index 82a30424d09..d71dad6dd59 100644 --- a/test/src/comp-tests.el +++ b/test/src/comp-tests.el @@ -48,7 +48,9 @@ Check that the resulting binaries do not differ." (comp1-src (make-temp-file "stage1-" nil ".el")) (comp2-src (make-temp-file "stage2-" nil ".el")) (comp1 (concat comp1-src "n")) - (comp2 (concat comp2-src "n"))) + (comp2 (concat comp2-src "n")) + ;; Can't use debug symbols. + (comp-debug 0)) (copy-file comp-src comp1-src t) (copy-file comp-src comp2-src t) (load (concat comp-src "c") nil nil t t)