cbegle%netscape.com 8e3e85b033 Adding ecma 2 tests to the repository.
git-svn-id: svn://10.0.0.236/trunk@32720 18797224-902f-48f8-a5cc-f745e15eee43
1999-05-26 21:22:57 +00:00

39 lines
842 B
JavaScript

/**
* File Name: while-001
* ECMA Section:
* Description: while statement
*
* Verify that the while statement is not executed if the while expression is
* false
*
* Author: christine@netscape.com
* Date: 11 August 1998
*/
var SECTION = "while-001";
var VERSION = "ECMA_2";
var TITLE = "while statement";
startTest();
writeHeaderToLog( SECTION + " "+ TITLE);
var tc = 0;
var testcases = new Array();
DoWhile();
test();
function DoWhile() {
result = "pass";
while (false) {
result = "fail";
break;
}
testcases[tc++] = new TestCase(
SECTION,
"while statement: don't evaluate statement is expression is false",
"pass",
result );
}