mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
13 lines
370 B
JavaScript
13 lines
370 B
JavaScript
function run_test()
|
|
{
|
|
do_crash(function() {
|
|
appAddr = CrashTestUtils.saveAppMemory();
|
|
crashReporter.registerAppMemory(appAddr, 32);
|
|
},
|
|
function(mdump, extra) {
|
|
do_check_true(mdump.exists());
|
|
do_check_true(mdump.fileSize > 0);
|
|
do_check_true(CrashTestUtils.dumpCheckMemory(mdump.path));
|
|
});
|
|
}
|