2017-07-14 17:37:24 +02:00
|
|
|
// 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){
|
2017-04-13 16:37:32 +02:00
|
|
|
print(msg);
|
2014-07-15 22:47:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function $DONE(){
|
2017-04-13 16:37:32 +02:00
|
|
|
if(!arguments[0])
|
|
|
|
__consolePrintHandle__('Test262:AsyncTestComplete');
|
|
|
|
else
|
2018-05-20 21:15:48 +02:00
|
|
|
__consolePrintHandle__('Test262:AsyncTestFailure:' + arguments[0]);
|
2014-07-17 19:49:35 +02:00
|
|
|
}
|