Regression test for bug 304897, match shell behavior

This commit is contained in:
bob%bclary.com 2005-10-25 11:50:43 +00:00
parent 909c3c70b5
commit 57680965b1

View File

@ -36,14 +36,14 @@
* ***** END LICENSE BLOCK ***** */
//-----------------------------------------------------------------------------
var bug = 304897;
var summary = 'uneval("\t"), uneval("\x09")';
var summary = 'uneval("\\t"), uneval("\\x09")';
var actual = '';
var expect = '';
printBugNumber (bug);
printStatus (summary);
expect = '"\t"';
expect = '"\\t"';
actual = uneval('\t');
reportCompare(expect, actual, summary);