Closed
Bug 694661
Opened 13 years ago
Closed 6 years ago
asserts call abort() which displays a dialog on windows, halting automated testing
Categories
(Tamarin Graveyard :: Optimizing JIT, defect)
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: trbaker, Unassigned)
References
Details
Attachments
(1 file)
35.29 KB,
image/png
|
Details |
Per Rick, abort() is called in asserts, which displays a dialog and waits for user input, halting automated testing.
"In a single or multithreaded Windows-based application, abort calls the Windows MessageBox function to create a message box to display the message with an OK button."
"When the application is linked with a debug version of the run-time libraries, abort creates a message box with three buttons: Abort, Retry, and Ignore."
Looks like we'll need to call _set_abort_behaviour to disable the box.
http://msdn.microsoft.com/en-us/library/e631wekh(v=VS.100).aspx
Reporter | ||
Updated•13 years ago
|
Flags: flashplayer-qrb?
Summary: windows debug builds call abort() n assert and throw dialog halting automated testing → asserts call abort() which displays a dialog on windows, halting automated testing
Reporter | ||
Comment 1•13 years ago
|
||
When the dialog is dmissed, you see something like:
2537 running abcasm/coverage/H.abs time 466.5
Assertion failed: !cfg.error, file c:/jenkins/workspace/halfmoon-compile/config/debug/label/windows/halfmoon/hm-check.cpp, line 784
unexpected exit code expected:0 actual:3 Signal Name: SIGQUIT FAILED!
captured output: Assertion failed: !cfg.error, file c:/jenkins/workspace/halfmoon-compile/config/debug/label/windows/halfmoon/hm-check.cpp, line 784|
FAILED passes:0 fails:1 unexpected passes: 0 expected failures: 0
Comment 2•6 years ago
|
||
Tamarin is a dead project now. Mass WONTFIX.
Status: NEW → RESOLVED
Closed: 6 years ago
Resolution: --- → WONTFIX
Comment 3•6 years ago
|
||
Tamarin isn't maintained anymore. WONTFIX remaining bugs.
You need to log in
before you can comment on or make changes to this bug.
Description
•