Mike Pennisi 92890e6723 Remove $FAIL function
This function is equivalent to `$ERROR` (which is automatically included
in test environments). Remove the harness file that defines the
function, remove references to the file from test `includes` lists, and
update scripts to instead invoke the `$ERROR` function.
2015-06-09 19:44:25 -04:00

46 lines
1.4 KiB
JavaScript

// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: >
Function call cannot appear in the program before the FunctionExpression
appears
es5id: 13_A17_T1
description: Trying to call a function before the FunctionExpression appears
---*/
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
try{
var __result = __func();
$ERROR("#1.1: var __result = __func() lead to throwing exception");
} catch(e) {
if ((e instanceof TypeError) !== true) {
$ERROR('#1.2: func should throw a TypeError Actual: ' + (e));
}
}
//
//////////////////////////////////////////////////////////////////////////////
var __func = function (){return "ONE";};
//////////////////////////////////////////////////////////////////////////////
//CHECK#2
var __result = __func();
if (__result !== "ONE") {
$ERROR('#2: __result === "ONE". Actual: __result ==='+__result);
}
//
//////////////////////////////////////////////////////////////////////////////
__func = function (){return "TWO";};
//////////////////////////////////////////////////////////////////////////////
//CHECK#3
var __result = __func();
if (__result !== "TWO") {
$ERROR('#3: __result === "TWO". Actual: __result ==='+__result);
}
//
//////////////////////////////////////////////////////////////////////////////