From 059b7cd4a3de6c0d214d723d8afcea39d4537191 Mon Sep 17 00:00:00 2001
From: Leonardo Balter <leonardo.balter@gmail.com>
Date: Thu, 23 Jun 2016 17:53:11 -0400
Subject: [PATCH] Remove invalid tests

ConversionError and RegExpError tests are methods that existed on
something that preceeded a IE9 Standard. They do not exist in the
specs, at least since ES5.

It's not test262 responsibility to maintain these tests as these
features can be freely implemented by any runtime.
---
 test/built-ins/Error/15.11-1.js | 9 ---------
 test/built-ins/Error/15.11-2.js | 9 ---------
 2 files changed, 18 deletions(-)
 delete mode 100644 test/built-ins/Error/15.11-1.js
 delete mode 100644 test/built-ins/Error/15.11-2.js

diff --git a/test/built-ins/Error/15.11-1.js b/test/built-ins/Error/15.11-1.js
deleted file mode 100644
index d66d5dc5fa..0000000000
--- a/test/built-ins/Error/15.11-1.js
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright (c) 2012 Ecma International.  All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/*---
-es5id: 15.11-1
-description: Error - ConversionError has been removed from IE9 standard mode
----*/
-
-assert.sameValue(typeof ConversionError, "undefined", 'typeof ConversionError');
diff --git a/test/built-ins/Error/15.11-2.js b/test/built-ins/Error/15.11-2.js
deleted file mode 100644
index 4bb74dd4e5..0000000000
--- a/test/built-ins/Error/15.11-2.js
+++ /dev/null
@@ -1,9 +0,0 @@
-// Copyright (c) 2012 Ecma International.  All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/*---
-es5id: 15.11-2
-description: Error - RegExpError has been removed from IE9 standard mode
----*/
-
-assert.sameValue(typeof RegExpError, "undefined", 'typeof RegExpError');
-- 
GitLab