[Http-webtest-commits] CVS: HTTP-WebTest Changes,1.11,1.12
Brought to you by:
m_ilya,
richardanderson
From: Ilya M. <m_...@us...> - 2002-02-08 14:06:51
|
Update of /cvsroot/http-webtest/HTTP-WebTest In directory usw-pr-cvs1:/tmp/cvs-serv14615 Modified Files: Changes Log Message: Updated Index: Changes =================================================================== RCS file: /cvsroot/http-webtest/HTTP-WebTest/Changes,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Changes 2 Feb 2002 04:08:19 -0000 1.11 --- Changes 8 Feb 2002 14:06:48 -0000 1.12 *************** *** 13,17 **** * Improve syntax error reporting in parser of wtscript files. ! * Support for embeded Perl in wtscript files in parser. INCOMPATIBILITIES: --- 13,17 ---- * Improve syntax error reporting in parser of wtscript files. ! * Support for embeded Perl in wtscript files. INCOMPATIBILITIES: *************** *** 20,23 **** --- 20,44 ---- been fixed to conform new API. This change is required for proper support of embeded Perl in wtscript files. + + * Changed format of wtscript files. Speaking more precisely rules for + test parameters value quoting have been changed to be more Perl + alike. It means that value of param should be written either as + + value - any string without special chars like => or ). It is + treated in same way as in old HTTP::WebTest + + "value" - usual Perl string quoting rules apply (i.e sequences + like \n, \r, etc are treated as special and " can be escaped with + \"). It is new in HTTP::WebTest. + + 'value' - usual Perl string quoting rules apply (i.e sequences + like \n is not tread as special but ' can be escaped with + \'). This change breaks previosly allowed ''value'' style for + escaping quote characters. + + Also Perl expression in curly brackets can be + specified instead of test parameter value. Like + + url = { "http://" . 'somehost.com' } 1.99_03 Mon Jan 28 2002 |