40 lines
1.2 KiB
JavaScript
40 lines
1.2 KiB
JavaScript
|
// Copyright 2020 the V8 project authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
// found in the LICENSE file.
|
||
|
|
||
|
function check_test_results(tests, status) {
|
||
|
let failed_counter = 0;
|
||
|
for (let test of tests) {
|
||
|
const PASS = 0;
|
||
|
const FAIL = 1;
|
||
|
const TIMEOUT = 2;
|
||
|
const NOTRUN = 3;
|
||
|
const PRECONDITION_FAILED = 4;
|
||
|
|
||
|
if (test.status !== PASS) {
|
||
|
console.log();
|
||
|
if (test.status === FAIL) {
|
||
|
console.log("Test failed");
|
||
|
} else if(test.status === TIMEOUT) {
|
||
|
console.log("Timeout");
|
||
|
} else if(test.status === NOTRUN) {
|
||
|
console.log("Test did not run");
|
||
|
} else if (test.status === PRECONDITION_FAILED) {
|
||
|
console.log("Test precondition failed");
|
||
|
} else {
|
||
|
console.log("Unknown error code:", test.status);
|
||
|
}
|
||
|
console.log("Message:");
|
||
|
console.log(test.message);
|
||
|
console.log("Stack trace:");
|
||
|
console.log(test.stack);
|
||
|
failed_counter++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
setTimeout(() => assertEquals(0, failed_counter));
|
||
|
}
|
||
|
|
||
|
add_completion_callback(check_test_results);
|
||
|
setup(() => {}, {'explicit_done': true});
|