Skip to content

Commit fec49f5

Browse files
committed
Update precommit test file list to run all test files.
JerryScript-DCO-1.0-Signed-off-by: László Langó [email protected]
1 parent 70a6779 commit fec49f5

File tree

17 files changed

+299
-319
lines changed

17 files changed

+299
-319
lines changed

tests/jerry-test-suite/11/11.04/11.04.06/11.04.06-007.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
// limitations under the License.
1414

1515
var a = new Number(0);
16-
assert(+a === 0) ? 1 : 0;
16+
assert(+a === 0);

tests/jerry-test-suite/15/15.05/15.05.02/15.05.02.01/15.05.02.01-001.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
assert(String.prototype.isPrototypeOf(new String("")) ? 1 : 0);
15+
assert(String.prototype.isPrototypeOf(new String("")));

tests/jerry-test-suite/15/15.05/15.05.04/15.05.04.04/15.05.04.04-001.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
assert(String("abc").charAt(-1) === "" ? 1 : 0);
15+
assert(String("abc").charAt(-1) === "");

tests/jerry-test-suite/15/15.05/15.05.04/15.05.04.04/15.05.04.04-002.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
assert(String("abc").charAt(3) === "" ? 1 : 0);
15+
assert(String("abc").charAt(3) === "");

tests/jerry-test-suite/15/15.05/15.05.04/15.05.04.04/15.05.04.04-003.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
assert(String("abc").charAt(0) === "a" ? 1 : 0);
15+
assert(String("abc").charAt(0) === "a");

tests/jerry-test-suite/15/15.05/15.05.04/15.05.04.04/15.05.04.04-004.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
assert(String("abc").charAt("0") === "a" ? 1 : 0);
15+
assert(String("abc").charAt("0") === "a");

tests/jerry-test-suite/15/15.05/15.05.04/15.05.04.05/15.05.04.05-001.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
assert(isNaN(String("abc").charCodeAt(-1)) ? 1 : 0);
15+
assert(isNaN(String("abc").charCodeAt(-1)));

tests/jerry-test-suite/15/15.05/15.05.04/15.05.04.05/15.05.04.05-003.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
assert(String("abc").charCodeAt(0) === 97 ? 1 : 0);
15+
assert(String("abc").charCodeAt(0) === 97);

tests/jerry-test-suite/15/15.05/15.05.04/15.05.04.05/15.05.04.05-004.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
assert(String("abc").charCodeAt("0") === 97 ? 1 : 0);
15+
assert(String("abc").charCodeAt("0") === 97);

tests/jerry-test-suite/15/15.05/15.05.04/15.05.04.06/15.05.04.06-001.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
assert(String("abc").concat("d") === "abcd" ? 1 : 0);
15+
assert(String("abc").concat("d") === "abcd");

0 commit comments

Comments
 (0)