Bug 1065185 - Fix crash IPC tests. r=bz

This commit is contained in:
Bobby Holley 2014-10-03 10:05:49 +02:00
Родитель 9f6dfee5c1
Коммит 9a78987c80
2 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -55,10 +55,10 @@ SpecialPowers.pushPrefEnv({'set':[
// Finally, poll for the new crash record.
function tryGetCrash() {
info("Waiting for getCrashes");
crashMan.getCrashes().then(function (crashes) {
crashMan.getCrashes().then(SpecialPowers.wrapCallback(function (crashes) {
if (crashes.length) {
is(crashes.length, 1, "There should be only one record");
var crash = SpecialPowers.wrap(crashes[0]);
var crash = crashes[0];
ok(crash.isOfType(crashMan.PROCESS_TYPE_CONTENT,
crashMan.CRASH_TYPE_CRASH),
"Record should be a content crash");
@ -75,7 +75,7 @@ SpecialPowers.pushPrefEnv({'set':[
else {
setTimeout(tryGetCrash, 1000);
}
}, function (err) {
}), function (err) {
ok(false, "Error getting crashes: " + err);
SimpleTest.finish();
});

Просмотреть файл

@ -69,7 +69,7 @@ function crashAndGetCrashServiceRecord(crashMethodName, callback) {
// the new record.
function tryGetCrash() {
info("Waiting for getCrashes");
crashMan.getCrashes().then(function (crashes) {
crashMan.getCrashes().then(SpecialPowers.wrapCallback(function (crashes) {
if (crashes.length) {
is(crashes.length, 1, "There should be only one record");
var crash = SpecialPowers.wrap(crashes[0]);
@ -86,7 +86,7 @@ function crashAndGetCrashServiceRecord(crashMethodName, callback) {
else {
setTimeout(tryGetCrash, 1000);
}
}, function (err) {
}), function (err) {
ok(false, "Error getting crashes: " + err);
SimpleTest.finish();
});