test262/harness/doneprintHandle.js

18 lines
395 B
JavaScript
Raw Normal View History

// Copyright (C) 2017 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: |
---*/
2014-07-15 22:47:59 +02:00
function __consolePrintHandle__(msg){
print(msg);
2014-07-15 22:47:59 +02:00
}
function $DONE(){
if(!arguments[0])
__consolePrintHandle__('Test262:AsyncTestComplete');
else
__consolePrintHandle__('Test262:AsyncTestFailure:' + arguments[0]);
}