From b359da88bec1a0f9f3592149ebb4665dbba32e54 Mon Sep 17 00:00:00 2001 From: David Fugate Date: Thu, 12 Jan 2012 09:43:20 -0800 Subject: [PATCH] No way to make S15.5.4.8_A1_T11.js (https://bugs.ecmascript.org/show_bug.cgi?id=30) valid. Removing it as similar coverage already exists. --- .../15.5/15.5.4/15.5.4.8/S15.5.4.8_A1_T11.js | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 test/suite/ch15/15.5/15.5.4/15.5.4.8/S15.5.4.8_A1_T11.js diff --git a/test/suite/ch15/15.5/15.5.4/15.5.4.8/S15.5.4.8_A1_T11.js b/test/suite/ch15/15.5/15.5.4/15.5.4.8/S15.5.4.8_A1_T11.js deleted file mode 100644 index 59034ff8ad..0000000000 --- a/test/suite/ch15/15.5/15.5.4/15.5.4.8/S15.5.4.8_A1_T11.js +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright 2009 the Sputnik authors. All rights reserved. -// This code is governed by the BSD license found in the LICENSE file. - -/** - * String.prototype.lastIndexOf(searchString, position) - * - * @path ch15/15.5/15.5.4/15.5.4.8/S15.5.4.8_A1_T11.js - * @description Instance is Date(0) object - */ - -var __instance = new Date(100000000); - -__instance.lastIndexOf = String.prototype.lastIndexOf; - -////////////////////////////////////////////////////////////////////////////// -//CHECK#1 -if ((__instance.lastIndexOf('1970')) !== 11) { - $ERROR('#1: __instance = new Date(0); __instance.lastIndexOf = String.prototype.lastIndexOf; __instance.lastIndexOf(\'1970\') === 11. Actual: '+(__instance.lastIndexOf('1970')) ); -} -// -////////////////////////////////////////////////////////////////////////////// -