From 5fbb0a3902f15f63b5a030a306ebf4e708be237a Mon Sep 17 00:00:00 2001
From: Sam Mikes <smikes@cubane.com>
Date: Fri, 24 Oct 2014 15:24:57 +0100
Subject: [PATCH] remove spurious flags: [path]

---
 .../Array.prototype.find_callable-predicate.js                   | 1 -
 .../Array.prototype.find_empty-array-undefined.js                | 1 -
 .../Array.prototype.find/Array.prototype.find_length-property.js | 1 -
 .../Array.prototype.find_modify-after-start.js                   | 1 -
 .../Array.prototype.find_non-returning-predicate.js              | 1 -
 .../Array.prototype.find_noncallable-predicate.js                | 1 -
 .../Array.prototype.find_predicate-arguments.js                  | 1 -
 .../Array.prototype.find_push-after-start.js                     | 1 -
 .../Array.prototype.find_remove-after-start.js                   | 1 -
 .../Array.prototype.find_return-found-value.js                   | 1 -
 .../es6/Array.prototype.find/Array.prototype.find_skip-empty.js  | 1 -
 .../Array.prototype.find/Array.prototype.find_this-defined.js    | 1 -
 .../Array.prototype.find/Array.prototype.find_this-is-object.js  | 1 -
 .../Array.prototype.find/Array.prototype.find_this-undefined.js  | 1 -
 14 files changed, 14 deletions(-)

diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_callable-predicate.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_callable-predicate.js
index 219fb79ab6..debf13f88b 100644
--- a/test/suite/es6/Array.prototype.find/Array.prototype.find_callable-predicate.js
+++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_callable-predicate.js
@@ -5,7 +5,6 @@
 description: >
     Array.prototype.find shouldn't throw a TypeError if
     IsCallable(predicate) is true
-flags: [path]
 includes: [runTestCase.js]
 ---*/
 
diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_empty-array-undefined.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_empty-array-undefined.js
index b98be4f17c..5a753b80c6 100644
--- a/test/suite/es6/Array.prototype.find/Array.prototype.find_empty-array-undefined.js
+++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_empty-array-undefined.js
@@ -3,7 +3,6 @@
 
 /*---
 description: Find on empty array should return undefined
-flags: [path]
 ---*/
 
 var a = [].find(function () {
diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_length-property.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_length-property.js
index ae30d483a8..4fc9dde843 100644
--- a/test/suite/es6/Array.prototype.find/Array.prototype.find_length-property.js
+++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_length-property.js
@@ -3,7 +3,6 @@
 
 /*---
 description: The length property of the find method is 1
-flags: [path]
 ---*/
 
 if ([].find.length !== 1) {
diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_modify-after-start.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_modify-after-start.js
index 4efc24fee6..568e67f0c9 100644
--- a/test/suite/es6/Array.prototype.find/Array.prototype.find_modify-after-start.js
+++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_modify-after-start.js
@@ -3,7 +3,6 @@
 
 /*---
 description: Array may be mutated by calls to the predicate
-flags: [path]
 ---*/
 
 [1, 2, 3].find(function (v, i, arr) {
diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_non-returning-predicate.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_non-returning-predicate.js
index bccdea5f4f..df72d4a287 100644
--- a/test/suite/es6/Array.prototype.find/Array.prototype.find_non-returning-predicate.js
+++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_non-returning-predicate.js
@@ -3,7 +3,6 @@
 
 /*---
 description: Find with a predicate with no return value should return undefined
-flags: [path]
 ---*/
 
 var a = [1, 2, 3].find(function () {});
diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_noncallable-predicate.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_noncallable-predicate.js
index 320515368c..9479153c73 100644
--- a/test/suite/es6/Array.prototype.find/Array.prototype.find_noncallable-predicate.js
+++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_noncallable-predicate.js
@@ -5,7 +5,6 @@
 description: >
     Array.prototype.find should throw a TypeError if
     IsCallable(predicate) is false
-flags: [path]
 includes: [runTestCase.js]
 ---*/
 
diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_predicate-arguments.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_predicate-arguments.js
index 81cecf94d9..defde03255 100644
--- a/test/suite/es6/Array.prototype.find/Array.prototype.find_predicate-arguments.js
+++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_predicate-arguments.js
@@ -5,7 +5,6 @@
 description: >
     predicate is called with three arguments: the value of the
     element, the index of the element, and the object being traversed.
-flags: [path]
 ---*/
 
 var a = [1];
diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_push-after-start.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_push-after-start.js
index 88bccb87f7..b3ff10c5a8 100644
--- a/test/suite/es6/Array.prototype.find/Array.prototype.find_push-after-start.js
+++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_push-after-start.js
@@ -5,7 +5,6 @@
 description: >
     Elements added to array after find has been called should not be
     visited
-flags: [path]
 ---*/
 
 [1].find(function (v, i, arr) {
diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_remove-after-start.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_remove-after-start.js
index b625d7ac9c..a788f0e85e 100644
--- a/test/suite/es6/Array.prototype.find/Array.prototype.find_remove-after-start.js
+++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_remove-after-start.js
@@ -5,7 +5,6 @@
 description: >
     Elements removed from array after find has been called should not
     be visited
-flags: [path]
 ---*/
 
 [1, 'string', 2].find(function (v, i, arr) {
diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_return-found-value.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_return-found-value.js
index f44f7afd2b..2731a09b7f 100644
--- a/test/suite/es6/Array.prototype.find/Array.prototype.find_return-found-value.js
+++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_return-found-value.js
@@ -3,7 +3,6 @@
 
 /*---
 description: Find should return value if predicate returns true
-flags: [path]
 ---*/
 
 var testVals = [
diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_skip-empty.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_skip-empty.js
index b00ee1eeb9..c935e2fd33 100644
--- a/test/suite/es6/Array.prototype.find/Array.prototype.find_skip-empty.js
+++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_skip-empty.js
@@ -5,7 +5,6 @@
 description: >
     predicate is called only for elements of the array which actually
     exist; it is not called for missing elements of the array
-flags: [path]
 ---*/
 
 var a = [];
diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_this-defined.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_this-defined.js
index acc8ba7c39..88bf029cde 100644
--- a/test/suite/es6/Array.prototype.find/Array.prototype.find_this-defined.js
+++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_this-defined.js
@@ -3,7 +3,6 @@
 
 /*---
 description: thisArg should be bound to this if provided
-flags: [path]
 ---*/
 
 var globalThis = this;
diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_this-is-object.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_this-is-object.js
index 6fc7a4410c..df99acc48d 100644
--- a/test/suite/es6/Array.prototype.find/Array.prototype.find_this-is-object.js
+++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_this-is-object.js
@@ -3,7 +3,6 @@
 
 /*---
 description: Array.prototype.find should convert thisArg into an object
-flags: [path]
 ---*/
 
 var dataTypes = [
diff --git a/test/suite/es6/Array.prototype.find/Array.prototype.find_this-undefined.js b/test/suite/es6/Array.prototype.find/Array.prototype.find_this-undefined.js
index 969a588edf..eede30e89a 100644
--- a/test/suite/es6/Array.prototype.find/Array.prototype.find_this-undefined.js
+++ b/test/suite/es6/Array.prototype.find/Array.prototype.find_this-undefined.js
@@ -3,7 +3,6 @@
 
 /*---
 description: thisArg should be undefined if not provided
-flags: [path]
 ---*/
 
 var globalThis = this;
-- 
GitLab