test: use logical and not or in abort-fatal-error

This commit is contained in:
Timothy J Fontaine 2014-01-27 18:27:10 -08:00
parent 2f5e77f55b
commit 114bff467e

View File

@ -41,7 +41,7 @@ exec(cmdline, function(err, stdout, stderr) {
return;
}
if (err.code !== 134 || err.signal !== 'SIGABRT') {
if (err.code !== 134 && err.signal !== 'SIGABRT') {
console.log(stdout);
console.log(stderr);
console.log(err);