summaryrefslogtreecommitdiff
path: root/test/built-ins/Date/S15.9.3.1_A5_T2.js
diff options
context:
space:
mode:
authorMike Pennisi <mike@mikepennisi.com>2015-06-09 12:08:02 -0400
committerMike Pennisi <mike@mikepennisi.com>2015-06-09 19:44:25 -0400
commit92890e6723b2a605fe78129774d3875e30048ffa (patch)
tree1213e30b5d3ad54e9344a1dba1c69f48de82e34a /test/built-ins/Date/S15.9.3.1_A5_T2.js
parent32edc4873e864753a998db42feb45ccb55db847b (diff)
downloadqtdeclarative-testsuites-92890e6723b2a605fe78129774d3875e30048ffa.tar.gz
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.
Diffstat (limited to 'test/built-ins/Date/S15.9.3.1_A5_T2.js')
-rw-r--r--test/built-ins/Date/S15.9.3.1_A5_T2.js25
1 files changed, 12 insertions, 13 deletions
diff --git a/test/built-ins/Date/S15.9.3.1_A5_T2.js b/test/built-ins/Date/S15.9.3.1_A5_T2.js
index 81a1f8cd9..cf0183c6d 100644
--- a/test/built-ins/Date/S15.9.3.1_A5_T2.js
+++ b/test/built-ins/Date/S15.9.3.1_A5_T2.js
@@ -15,7 +15,6 @@ info: >
es5id: 15.9.3.1_A5_T2
description: 3 arguments, (year, month, date)
includes:
- - $FAIL.js
- environment.js
- numeric_conversion.js
- Date_constants.js
@@ -23,49 +22,49 @@ includes:
---*/
if (-2209046400000 !== new Date(1899, 11, 31).valueOf()) {
- $FAIL("#1: Incorrect value of Date");
+ $ERROR("#1: Incorrect value of Date");
}
if (-2208960000000 !== new Date(1899, 12, 1).valueOf()) {
- $FAIL("#2: Incorrect value of Date");
+ $ERROR("#2: Incorrect value of Date");
}
if (-2208960000000 !== new Date(1900, 0, 1).valueOf()) {
- $FAIL("#3: Incorrect value of Date");
+ $ERROR("#3: Incorrect value of Date");
}
if (-57600000 !== new Date(1969, 11, 31).valueOf()) {
- $FAIL("#4: Incorrect value of Date");
+ $ERROR("#4: Incorrect value of Date");
}
if (28800000 !== new Date(1969, 12, 1).valueOf()) {
- $FAIL("#5: Incorrect value of Date");
+ $ERROR("#5: Incorrect value of Date");
}
if (28800000 !== new Date(1970, 0, 1).valueOf()) {
- $FAIL("#6: Incorrect value of Date");
+ $ERROR("#6: Incorrect value of Date");
}
if (946627200000 !== new Date(1999, 11, 31).valueOf()) {
- $FAIL("#7: Incorrect value of Date");
+ $ERROR("#7: Incorrect value of Date");
}
if (946713600000 !== new Date(1999, 12, 1).valueOf()) {
- $FAIL("#8: Incorrect value of Date");
+ $ERROR("#8: Incorrect value of Date");
}
if (946713600000 !== new Date(2000, 0, 1).valueOf()) {
- $FAIL("#9: Incorrect value of Date");
+ $ERROR("#9: Incorrect value of Date");
}
if (4102387200000 !== new Date(2099, 11, 31).valueOf()) {
- $FAIL("#10: Incorrect value of Date");
+ $ERROR("#10: Incorrect value of Date");
}
if (4102473600000 !== new Date(2099, 12, 1).valueOf()) {
- $FAIL("#11: Incorrect value of Date");
+ $ERROR("#11: Incorrect value of Date");
}
if (4102473600000 !== new Date(2100, 0, 1).valueOf()) {
- $FAIL("#12: Incorrect value of Date");
+ $ERROR("#12: Incorrect value of Date");
}