2007-10-23 Maciej Stachowiak Reviewed by Darin. * resources/sunspider-analyze-results.js: Do the error range properly, using the t-distribution instead of 1.96 (which was based on the normal distribution). * sunspider: Print results in a way that will be friendlier to the soon-to-come compare mode. 2007-10-22 Maciej Stachowiak Reviewed by Review. - add more tests (probably the final set for now) Already balanced. Added date, regexp, control flow, and a few more string and object/array access tests. * tests/LIST: * tests/access-fannkuch.js: Added. * tests/access-nbody.js: Added. * tests/controlflow-recursive.js: Added. * tests/date-format-tofte.js: Added. * tests/date-format-xparb.js: Added. * tests/regexp-dna.js: Added. * tests/string-validate-input.js: Added. 2007-10-21 Eric Seidel Reviewed by mjs. * sunspider: make --shark only sample from testkjs 2007-10-21 Maciej Stachowiak Rubber stamped by Eric. - added crypto tests (already balanced) * tests/LIST: * tests/crypto-aes.js: Added. * tests/crypto-md5.js: Added. * tests/crypto-sha1.js: Added. 2007-10-21 Maciej Stachowiak Reviewed by Adam. - rebalance new tests Scaled the new tests so they take 400-600ms on a reasonably normal user setup: Internet Explorer 7, Window XP, Dell Latitude D810 with a 2.13GHz Pentium M This balances them with the existing tests. * tests/access-binary-trees.js: * tests/access-nsieve.js: * tests/bitops-nsieve-bits.js: * tests/math-partial-sums.js: * tests/math-spectral-norm.js: * tests/string-fasta.js: 2007-10-20 Eric Seidel Reviewed by darin. Add improved argument handling to sunspider, including --runs=, --tests= Reviewed by Mark. - Add more new tests, mostly from the computer language shootout. Not normalized yet. * TODO: * tests/LIST: * tests/access-binary-trees.js: Added. * tests/access-nsieve.js: Added. * tests/bitops-nsieve-bits.js: Added. * tests/math-partial-sums.js: Added. * tests/math-spectral-norm.js: Added. * tests/string-fasta.js: Added. 2007-10-20 Maciej Stachowiak Reviewed by Darin. * TODO: Updated to note areas that are now well-covered. - Change the tests and the driver to avoid leaving large object graphs hanging around, since that throws off the subsequent tests. * resources/sunspider-standalone-driver.js: * tests/3d-cube.js: * tests/3d-morph.js: * tests/3d-raytrace.js: * tests/bitops-bitwise-and.js: * tests/string-base64.js: * tests/string-tagcloud.js: 2007-10-20 Maciej Stachowiak Reviewed by Nikolas. - Rebalance test complexity. Scaled all the tests so they take 400-600ms on a reasonably normal user setup: Internet Explorer 7, Window XP, Dell Latitude D810 with a 2.13GHz Pentium M However, for some tests, IE7 was a huge outlier compared to other major browsers. For those tests, I used Firefox 2.0.0.8 on the same OS and hardware as a normalization basis. * tests/3d-morph.js: * tests/3d-raytrace.js: * tests/bitops-3bit-bits-in-byte.js: * tests/bitops-bits-in-byte.js: * tests/bitops-bitwise-and.js: * tests/math-cordic.js: * tests/string-base64.js: * tests/string-tagcloud.js: * tests/string-unpack-code.js: 2007-10-20 Maciej Stachowiak Reviewed by Oliver. - Fix the browser-hosted driver to be compatible with Safari 2 * hosted/sunspider-driver.html: 2007-10-20 Maciej Stachowiak Rubber stamped by Hyatt. - Add BSD license notice to cordic test, the original author said to do so. * tests/math-cordic.js: 2007-10-18 Maciej Stachowiak Reviewed by Eric. - Support Windows and Windows browsers. * hosted/sunspider-results.html: Display results correctly in IE. * sunspider: tweaks to work on Windows, and with spaces in the path. 2007-10-18 Maciej Stachowiak Rubber stamped by Oliver. * tests/string-tagcloud.js: Remove stray print() 2007-10-17 Maciej Stachowiak Reviewed by Oliver. Add some string test cases. * tests/string-base64.js: Added. Does base64 encoding and decoding. * tests/string-tagcloud.js: Added. Parses a JSON string and generates tagcloud HTML markup based on the data. * tests/string-unpack-code.js: Added. Unpack compressed versions of four of the most popular JavaScript libraries. * tests/LIST: Added the new tests. 2007-10-16 Maciej Stachowiak Reviewed by Anders. * TODO: Updated with info on how to do the stats properly. * hosted/sunspider-driver.html: Reduce timeout from 500 to 200 to avoid overly slowing down the benchmark. Added some 3D-related test cases. * tests/3d-cube.js: Added. * tests/3d-morph.js: Added. * tests/3d-raytrace.js: Added. * tests/LIST: 2007-10-14 Maciej Stachowiak Reviewed by Darin. - New JavaScript benchmark http://bugs.webkit.org/show_bug.cgi?id=15515 A start on a new JavaScript benchmark, with standalone and browser-hosted drivers. The test content is still incomplete and the drivers could use some more features but there is enough here to make a good start. The drivers compute a 95% confidence interval on the mean for the whole test, each category, and each individual test to make it easier to tell whether differences are statistically significant. The confidence interval can be narrowed by running the test more times. * TODO: Added. Remaining things that need to be done. * sunspider: Added. Perl script that acts as the standalone test driver. * resources/sunspider-standalone-driver.js: Added. JavaScript part of standalone test driver. * resources/sunspider-analyze-results.js: Added. JavaScript statistical analysis code. * resources/TEMPLATE.html: Added. Template for browser-hosted tests. * make-hosted: Added. Script to generate browser-hosted tests. * hosted/sunspider.html: Added. Start page for browser-hosted test. * hosted/sunspider-driver.html: Added. Driver for browser-hosted tests. * hosted/sunspider-results.html: Added. Results page for browser-hosted tests. * hosted/sunspider-record-result.js: Added. Helper file for browser-hosted tests. * tests/LIST: Added. List of tests to use. * tests/bitops-3bit-bits-in-byte.js: Added. Some initial test content. * tests/bitops-bits-in-byte.js: Added. Ditto. * tests/bitops-bitwise-and.js: Added. Ditto. * tests/math-cordic.js: Added. Ditto.