svn commit: samba r8413 - in branches/SAMBA_4_0/testprogs/ejs: .

tridge at samba.org tridge at samba.org
Wed Jul 13 05:32:43 GMT 2005


Author: tridge
Date: 2005-07-13 05:32:41 +0000 (Wed, 13 Jul 2005)
New Revision: 8413

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=8413

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


Modified:
   branches/SAMBA_4_0/testprogs/ejs/bugs.js


Changeset:
Modified: branches/SAMBA_4_0/testprogs/ejs/bugs.js
===================================================================
--- branches/SAMBA_4_0/testprogs/ejs/bugs.js	2005-07-13 05:31:21 UTC (rev 8412)
+++ branches/SAMBA_4_0/testprogs/ejs/bugs.js	2005-07-13 05:32:41 UTC (rev 8413)
@@ -73,7 +73,7 @@
 
 /*
  demo a expression handling bug
- status: SUBMITTED
+ status: FIXED
 */
 function exprbug() {
 	var a = new Array(10);
@@ -118,10 +118,21 @@
 	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();



More information about the samba-cvs mailing list