hi all
i just sent a build report of my latest compile of 21.5
i am getting a core dump during make check (output below)
my last make check had exactly the same output
is anyone else getting this ??
i attached the gdb output to my previous build-report
-output from make check-
cd /Data/Hacking/src/xemacs/xemacs-21.5/
gmake check
Compilation started at Wed Mar 27 21:50:00 2002
cd ./src && gmake check
gmake[1]: Entering directory `/Data/Hacking/src/xemacs/xemacs-21.5/src'
./xemacs -no-packages -batch -l
/Data/Hacking/src/xemacs/xemacs-21.5/src/../tests/automated/test-harness.el -f
batch-test-emacs /Data/Hacking/src/xemacs/xemacs-21.5/src/../tests/automated
Testing /Data/Hacking/src/xemacs/xemacs-21.5/tests/automated/base64-tests.el...
base64-tests.el: 1232 of 1232 (100%) tests successful.
Testing /Data/Hacking/src/xemacs/xemacs-21.5/tests/automated/byte-compiler-tests.el...
Unexpected error (void-function defadvice) while executing interpreted code.
Test suite execution aborted.
Unexpected error (void-variable message) while executing byte-compiled code.
Test suite execution aborted.
byte-compiler-tests.el: No tests run
Test suite execution failed unexpectedly.
Testing /Data/Hacking/src/xemacs/xemacs-21.5/tests/automated/c-tests.el...
Fatal error: assertion failed, file tests.c, line 364, !memcmp (BI_BUF_BYTE_ADDRESS
(current_buffer, charbpos_to_bytebpos (current_buffer, ((current_buffer)->bufpt + 0))),
int_foo, sizeof (int_foo) - 1)
Fatal error (6).
Your files have been auto-saved.
Use `M-x recover-session' to recover them.
If you have access to the PROBLEMS file that came with your
version of XEmacs, please check to see if your crash is described
there, as there may be a workaround available.
Otherwise, please report this bug by running the send-pr
script included with XEmacs, or selecting `Send Bug Report'
from the help menu.
As a last resort send ordinary email to `crashes(a)xemacs.org'.
*MAKE SURE* to include the information in the command
M-x describe-installation.
If at all possible, *please* try to obtain a C stack backtrace;
it will help us immensely in determining what went wrong.
To do this, locate the core file that was produced as a result
of this crash (it's usually called `core' and is located in the
directory in which you started the editor, or maybe in your home
directory), and type
gdb /Data/Hacking/src/xemacs/xemacs-21.5/src/xemacs core
then type `where' when the debugger prompt comes up.
(If you don't have GDB on your system, you might have DBX,
or XDB, or SDB. A similar procedure should work for all of
these. Ask your system administrator if you need more help.)
Lisp backtrace follows:
test-data-format-conversion()
funcall(test-data-format-conversion)
(eq (quote PASS) (funcall fun))
(or (eq (quote PASS) (funcall fun)) (signal (quote cl-assertion-failed) (list ...)))
(progn (or (eq ... ...) (signal ... ...)) nil)
(assert (eq (quote PASS) (funcall fun)))
(progn (assert (eq ... ...)) (princ (format "PASS: %S" ...)) (terpri) (incf
passes))
# (condition-case ... . ((cl-assertion-failed (princ ...) (incf assertion-failures)) (t
(princ ...) (incf other-failures))))
(condition-case error-info (progn (assert ...) (princ ...) (terpri) (incf passes))
(cl-assertion-failed (princ ...) (incf assertion-failures)) (t (princ ...) (incf
other-failures)))
(Assert (eq (quote PASS) (funcall fun)))
(while (consp G40332) (setq fun (car G40332)) (Assert (eq ... ...)) (setq G40332 (cdr
G40332)))
# bind (fun G40332)
(let* ((G40332 test-function-list) (fun nil)) (while (consp G40332) (setq fun ...)
(Assert ...) (setq G40332 ...)) nil)
# (catch --cl-block-nil-- ...)
(catch (quote --cl-block-nil--) (let* (... ...) (while ... ... ... ...) nil))
(cl-block-wrapper (catch (quote --cl-block-nil--) (let* ... ... nil)))
(block nil (let* (... ...) (while ... ... ... ...) nil))
(loop for fun in test-function-list do (Assert (eq ... ...)))
(if (boundp (quote test-function-list)) (loop for fun in test-function-list do (Assert
...)))
(when (boundp (quote test-function-list)) (loop for fun in test-function-list do (Assert
...)))
(lambda nil (defvar passes) (defvar assertion-failures) (defvar no-error-failures)
(defvar wrong-error-failures) (defvar missing-message-failures) (defvar other-failures)
(defvar unexpected-test-suite-failure) (defvar trick-optimizer) (eval-when-compile
(condition-case nil ... ...)) (when (boundp ...) (loop for fun in test-function-list do
...)))()
funcall((lambda nil (defvar passes) (defvar assertion-failures) (defvar
no-error-failures) (defvar wrong-error-failures) (defvar missing-message-failures) (defvar
other-failures) (defvar unexpected-test-suite-failure) (defvar trick-optimizer)
(eval-when-compile (condition-case nil ... ...)) (when (boundp ...) (loop for fun in
test-function-list do ...))))
# (condition-case ... . ((error (setq unexpected-test-suite-failure t) (princ ...)
(message "Unexpected error %S while executing interpreted code." error-info)
(message "Test suite execution aborted." error-info))))
(condition-case error-info (funcall (test-harness-read-from-buffer inbuffer)) (error
(setq unexpected-test-suite-failure t) (princ ...) (message "Unexpected error %S
while executing interpreted code." error-info) (message "Test suite execution
aborted." error-info)))
# bind (standard-output)
(with-output-to-temp-buffer "*Test-Log*" (defmacro Assert (assertion)
(backquote ...)) (defmacro Check-Error (expected-error &rest body) (let ... ...))
(defmacro Check-Error-Message (expected-error expected-error-regexp &rest body) (let
... ...)) (defmacro Check-Message (expected-message-regexp &rest body) (let ... ...))
(defmacro Ignore-Ebola (&rest body) (backquote ...)) (defun Int-to-Marker (pos)
(save-excursion ... ...)) (princ "Testing Interpreted Lisp\n\n") (condition-case
error-info (funcall ...) (error ... ... ... ...)) (princ "\nTesting Compiled
Lisp\n\n") (let (code) (condition-case error-info ... ...) (condition-case error-info
... ...)) (princ "\nSUMMARY:\n") (princ (format " %5d passes\n"
passes)) (princ (format " %5d assertion failures\n" assertion-failures)) (princ
(format " %5d errors that should have been generated, but weren't\n"
no-error-failures)) (princ (format " %5d wrong-error failures\n"
wrong-error-failures)) (princ (format " %5d missing-message fa!
ilures\n" missing-message-failures)) (princ (format " %5d other
failures\n" other-failures)) (let* (... ... ...) (message "%s"
summary-msg)) (when unexpected-test-suite-failure (message "Test suite execution
failed unexpectedly.")) (fmakunbound (quote Assert)) (fmakunbound (quote
Check-Error)) (fmakunbound (quote Ignore-Ebola)) (fmakunbound (quote Int-to-Marker)))
# bind (debug-on-error unexpected-test-suite-failure trick-optimizer other-failures
missing-message-failures wrong-error-failures no-error-failures assertion-failures
passes)
(let ((passes 0) (assertion-failures 0) (no-error-failures 0) (wrong-error-failures 0)
(missing-message-failures 0) (other-failures 0) (trick-optimizer nil)
(unexpected-test-suite-failure nil) (debug-on-error t)) (with-output-to-temp-buffer
"*Test-Log*" (defmacro Assert ... ...) (defmacro Check-Error ... ...) (defmacro
Check-Error-Message ... ...) (defmacro Check-Message ... ...) (defmacro Ignore-Ebola ...
...) (defun Int-to-Marker ... ...) (princ "Testing Interpreted Lisp\n\n")
(condition-case error-info ... ...) (princ "\nTesting Compiled Lisp\n\n") (let
... ... ...) (princ "\nSUMMARY:\n") (princ ...) (princ ...) (princ ...) (princ
...) (princ ...) (princ ...) (let* ... ...) (when unexpected-test-suite-failure ...)
(fmakunbound ...) (fmakunbound ...) (fmakunbound ...) (fmakunbound ...)))
# bind (filename inbuffer)
test-harness-from-buffer(#<buffer " *Test Input*">
"/Data/Hacking/src/xemacs/xemacs-21.5/tests/automated/c-tests.el")
# bind (input-buffer test-harness-current-file)
(let ((test-harness-current-file filename) input-buffer) (save-excursion (setq
input-buffer ...) (set-buffer input-buffer) (erase-buffer) (insert-file-contents filename)
(let ... ... ...)) (test-harness-from-buffer input-buffer filename) (kill-buffer
input-buffer))
# bind (filename)
test-emacs-test-file("/Data/Hacking/src/xemacs/xemacs-21.5/tests/automated/c-tests.el")
(progn (test-emacs-test-file file) t)
# (condition-case ... . ((error (princ ">>Error occurred processing ")
(princ file) (princ ": ") (display-error error-info nil) (terpri) nil)))
(condition-case error-info (progn (test-emacs-test-file file) t) (error (princ
">>Error occurred processing ") (princ file) (princ ": ")
(display-error error-info nil) (terpri) nil))
# bind (file)
batch-test-emacs-1("/Data/Hacking/src/xemacs/xemacs-21.5/tests/automated/c-tests.el")
(or (batch-test-emacs-1 file-in-dir) (setq error t))
(if (and (string-match emacs-lisp-file-regexp file-in-dir) (not ...)) (or
(batch-test-emacs-1 file-in-dir) (setq error t)))
(when (and (string-match emacs-lisp-file-regexp file-in-dir) (not ...)) (or
(batch-test-emacs-1 file-in-dir) (setq error t)))
(while --dolist-temp--40303 (setq file-in-dir (car --dolist-temp--40303)) (when (and ...
...) (or ... ...)) (setq --dolist-temp--40303 (cdr --dolist-temp--40303)))
# bind (file-in-dir --dolist-temp--40303)
(let ((--dolist-temp--40303 ...) file-in-dir) (while --dolist-temp--40303 (setq
file-in-dir ...) (when ... ...) (setq --dolist-temp--40303 ...)) nil)
# (catch --cl-block-nil-- ...)
(catch (quote --cl-block-nil--) (let (... file-in-dir) (while --dolist-temp--40303 ...
... ...) nil))
(cl-block-wrapper (catch (quote --cl-block-nil--) (let ... ... nil)))
(block nil (let (... file-in-dir) (while --dolist-temp--40303 ... ... ...) nil))
(dolist (file-in-dir (directory-files file t)) (when (and ... ...) (or ... ...)))
(if (file-directory-p file) (dolist (file-in-dir ...) (when ... ...)) (or
(batch-test-emacs-1 file) (setq error t)))
(while --dolist-temp--40302 (setq file (car --dolist-temp--40302)) (if (file-directory-p
file) (dolist ... ...) (or ... ...)) (setq --dolist-temp--40302 (cdr
--dolist-temp--40302)))
# bind (file --dolist-temp--40302)
(let ((--dolist-temp--40302 command-line-args-left) file) (while --dolist-temp--40302
(setq file ...) (if ... ... ...) (setq --dolist-temp--40302 ...)) nil)
# (catch --cl-block-nil-- ...)
(catch (quote --cl-block-nil--) (let (... file) (while --dolist-temp--40302 ... ... ...)
nil))
(cl-block-wrapper (catch (quote --cl-block-nil--) (let ... ... nil)))
(block nil (let (... file) (while --dolist-temp--40302 ... ... ...) nil))
(dolist (file command-line-args-left) (if (file-directory-p file) (dolist ... ...) (or
... ...)))
# bind (error)
(let ((error nil)) (dolist (file command-line-args-left) (if ... ... ...)) (message
"Done") (kill-emacs (if error 1 0)))
batch-test-emacs()
# bind (arg)
command-line-do-funcall("-f")
# bind (dir file-count line end-of-options file-p arg tem)
command-line-1()
# bind (command-line-args-left)
command-line()
# (unwind-protect ...)
normal-top-level()
# (condition-case ... . error)
# (catch top-level ...)
gmake[1]: *** [check] Abort trap (core dumped)
gmake[1]: Leaving directory `/Data/Hacking/src/xemacs/xemacs-21.5/src'
gmake: *** [check] Error 2
Compilation exited abnormally with code 2 at Wed Mar 27 21:50:13
--
XEmacs Advocate | Do not try the patience of Wizards,
FreeBSD Devote | for they are subtle and quick to anger.
Perl Hacker | - Elric (Technomage) , Babylon 5.
Apache God | <mailto:rendhalverï¼ xemacs.org>
Show replies by date