Changeset 3234
- Timestamp:
- 02/20/08 18:37:40 (10 months ago)
- Files:
-
- trunk/example/text/soap_mid.xml (added)
- trunk/example/text/xmldom.d (modified) (2 diffs)
- trunk/example/text/xmlpull.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/example/text/xmldom.d
r3218 r3234 25 25 26 26 elapsed.start; 27 for ( int i=0; i < iterations; i++)27 for (auto i=0; ++i < iterations;)) 28 28 doc.parse (content); 29 29 … … 37 37 void main() 38 38 { 39 for (int i= 20; --i;)40 bench ( 2000, "hamlet.xml");39 for (int i=10; --i;) 40 bench (5000, "soap_mid.xml"); 41 41 } 42 42 trunk/example/text/xmlpull.d
r3207 r3234 29 29 { 30 30 for (int i = 10; --i;) 31 benchmark (5000, " hamlet.xml");31 benchmark (5000, "soap_mid.xml"); 32 32 }












