]> git.eshelyaron.com Git - emacs.git/commitdiff
Always force debug 0 for bootstrap test
authorAndrea Corallo <akrl@sdf.org>
Mon, 20 Jan 2020 21:57:11 +0000 (21:57 +0000)
committerAndrea Corallo <akrl@sdf.org>
Mon, 20 Jan 2020 21:57:11 +0000 (21:57 +0000)
Debug symbols would make it fail otherwise.

test/src/comp-tests.el

index 82a30424d09e5c400d1ed8c1f2ccfbcd4e32bc29..d71dad6dd591bb22bee3a962135b705dac8f10f6 100644 (file)
@@ -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)