1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-14 00:58:38 +03:00

r8413: mark exprbug() as fixed, and add a new bug

This commit is contained in:
Andrew Tridgell 2005-07-13 05:32:41 +00:00 committed by Gerald (Jerry) Carter
parent fcf60823c6
commit c470c3ceac

View File

@ -73,7 +73,7 @@ function objbug() {
/*
demo a expression handling bug
status: SUBMITTED
status: FIXED
*/
function exprbug() {
var a = new Array(10);
@ -118,10 +118,21 @@ function fnbug(c)
assert(s == "testing");
}
/****************************************
demo incorrect handling of reserved words in strings
status: SUBMITTED
*****************************************/
function reservedbug()
{
assert("funct" + "ion" == 'function');
}
/* run the tests */
arraybug();
argsbug("one", "two", "three");
recursebug();
exprbug();
fnbug(callback);
reservedbug();
objbug();