Some more test improvements

This commit is contained in:
Mark Miller 2011-09-30 08:22:45 -04:00
parent 68f00c57a3
commit aad373e620
3 changed files with 24 additions and 24 deletions

View File

@ -10,13 +10,13 @@
*/
//CHECK
errorCount = 0;
count = 0;
var errorCount = 0;
var count = 0;
var hex = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F"];
for (i1 = 0; i1 < 16; i1++) {
for (i2 = 0; i2 < 16; i2++) {
for (i3 = 0; i3 < 16; i3++) {
for (i4 = 0; i4 < 16; i4++) {
for (var i1 = 0; i1 < 16; i1++) {
for (var i2 = 0; i2 < 16; i2++) {
for (var i3 = 0; i3 < 16; i3++) {
for (var i4 = 0; i4 < 16; i4++) {
try {
var uu = hex[i1] + hex[i2] + hex[i3] + hex[i4];
var Elimination =

View File

@ -5,7 +5,7 @@
* In ES5, First expression should be evaluated first.
*
* @path 11_Expressions/11.8_Relational_Operators/11.8.2_The_Greater_than_Operator/S11.8.2_A2.3_T1.js
* @description Checking with "throw"
* @description Checking that operands of a "<" evaluate left-to-right
*/
//CHECK#1

View File

@ -5,7 +5,7 @@
* In ES5, First expression should be evaluated first.
*
* @path 11_Expressions/11.8_Relational_Operators/11.8.3_The_Less_than_or_equal_Operator/S11.8.3_A2.3_T1.js
* @description Checking with "throw"
* @description Checking that operands of a "<=" evaluate left-to-right
*/
//CHECK#1