emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

feature/native-comp e83bc25 1/2: Always force debug 0 for bootstrap test


From: Andrea Corallo
Subject: feature/native-comp e83bc25 1/2: Always force debug 0 for bootstrap test
Date: Mon, 20 Jan 2020 17:06:36 -0500 (EST)

branch: feature/native-comp
commit e83bc2503b6639542e85a859f88642bde3411bf5
Author: Andrea Corallo <address@hidden>
Commit: Andrea Corallo <address@hidden>

    Always force debug 0 for bootstrap test
    
    Debug symbols would make it fail otherwise.
---
 test/src/comp-tests.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/test/src/comp-tests.el b/test/src/comp-tests.el
index 82a3042..d71dad6 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]