blob: 44e0941eb9112f228a471cfbacf45d698fe0b57f [file] [edit]
var hasModule = typeof Module === 'object' && Module;
/**
* @param {number=} port
*/
function reportResultToServer(result, port) {
port = port || 8888;
if (reportResultToServer.reported) {
// Only report one result per test, even if the test misbehaves and tries to report more.
reportErrorToServer("excessive reported results, sending " + result + ", test will fail");
}
reportResultToServer.reported = true;
if ((typeof ENVIRONMENT_IS_NODE !== 'undefined' && ENVIRONMENT_IS_NODE) || (typeof ENVIRONMENT_IS_AUDIO_WORKLET !== 'undefined' && ENVIRONMENT_IS_AUDIO_WORKLET)) {
out('RESULT: ' + result);
} else {
let doFetch = typeof origFetch != 'undefined' ? origFetch : fetch;
doFetch('http://localhost:' + port + '/report_result?' + result).then(() => {
if (typeof window === 'object' && window && hasModule && !Module['pageThrewException']) {
/* for easy debugging, don't close window on failure */
window.close();
}
});
}
}
/**
* @param {number=} port
*/
function maybeReportResultToServer(result, port) {
if (reportResultToServer.reported) return;
reportResultToServer(result, port);
}
function reportErrorToServer(message) {
if (typeof ENVIRONMENT_IS_NODE !== 'undefined' && ENVIRONMENT_IS_NODE) {
err(message);
} else {
fetch(encodeURI('http://localhost:8888?stderr=' + message));
}
}
function report_error(e) {
// MINIMAL_RUNTIME doesn't handle exit or call the below onExit handler
// so we detect the exit by parsing the uncaught exception message.
var message = e.message || e;
console.error("got top level error: " + message);
if (window.disableErrorReporting) return;
if (message.includes('unwind')) return;
var offset = message.indexOf('exit(');
if (offset != -1) {
var status = message.substring(offset + 5);
offset = status.indexOf(')')
status = status.substr(0, offset)
console.error(status);
var result = 'exit:' + status;
} else {
if (hasModule) Module['pageThrewException'] = true;
result = 'exception:' + message + ' / ' + e.stack;
}
// FIXME: Ideally we would just reportResultToServer rather than the `maybe`
// form but some browser tests currently report exceptions after exit.
maybeReportResultToServer(result);
}
if (typeof window === 'object' && window) {
window.addEventListener('error', event => {
report_error(event.error || event)
});
window.addEventListener('unhandledrejection', event => report_error(event.reason));
}
if (hasModule) {
if (!Module['onExit']) {
Module['onExit'] = function(status) {
// If Module['REPORT_EXIT'] is set to false, do not report the result of
// onExit.
if (Module['REPORT_EXIT'] !== false) {
maybeReportResultToServer('exit:' + status);
}
}
// Force these handlers to be proxied back to the main thread.
// Without this tagging the handler will run each thread, which means
// each thread uses its own copy of `maybeReportResultToServer` which
// breaks the checking for duplicate reporting.
Module['onExit'].proxy = true;
}
if (!Module['onAbort']) {
Module['onAbort'] = function(reason) {
maybeReportResultToServer('abort:' + reason);
}
Module['onAbort'].proxy = true;
}
}