1 2007-10-20 Maciej Stachowiak <mjs@apple.com>
5 - Rebalance test complexity.
7 Scaled all the tests so they take 400-600ms on a reasonably normal user setup:
9 Internet Explorer 7, Window XP, Dell Latitude D810 with a 2.13GHz Pentium M
11 However, for some tests, IE7 was a huge outlier compared to other
12 major browsers. For those tests, I used Firefox 2.0.0.8 on the
13 same OS and hardware as a normalization basis.
16 * tests/3d-raytrace.js:
17 * tests/bitops-3bit-bits-in-byte.js:
18 * tests/bitops-bits-in-byte.js:
19 * tests/bitops-bitwise-and.js:
20 * tests/math-cordic.js:
21 * tests/string-base64.js:
22 * tests/string-tagcloud.js:
23 * tests/string-unpack-code.js:
25 2007-10-20 Maciej Stachowiak <mjs@apple.com>
29 - Fix the browser-hosted driver to be compatible with Safari 2
31 * hosted/sunspider-driver.html:
33 2007-10-20 Maciej Stachowiak <mjs@apple.com>
35 Rubber stamped by Hyatt.
37 - Add BSD license notice to cordic test, the original author said to do so.
39 * tests/math-cordic.js:
41 2007-10-18 Maciej Stachowiak <mjs@apple.com>
45 - Support Windows and Windows browsers.
47 * hosted/sunspider-results.html: Display results correctly in IE.
48 * sunspider: tweaks to work on Windows, and with spaces in the path.
50 2007-10-18 Maciej Stachowiak <mjs@apple.com>
52 Rubber stamped by Oliver.
54 * tests/string-tagcloud.js: Remove stray print()
56 2007-10-17 Maciej Stachowiak <mjs@apple.com>
60 Add some string test cases.
62 * tests/string-base64.js: Added. Does base64 encoding and decoding.
63 * tests/string-tagcloud.js: Added. Parses a JSON string and
64 generates tagcloud HTML markup based on the data.
65 * tests/string-unpack-code.js: Added. Unpack compressed versions of
66 four of the most popular JavaScript libraries.
67 * tests/LIST: Added the new tests.
69 2007-10-16 Maciej Stachowiak <mjs@apple.com>
73 * TODO: Updated with info on how to do the stats properly.
75 * hosted/sunspider-driver.html: Reduce timeout from 500 to 200 to
76 avoid overly slowing down the benchmark.
78 Added some 3D-related test cases.
80 * tests/3d-cube.js: Added.
81 * tests/3d-morph.js: Added.
82 * tests/3d-raytrace.js: Added.
85 2007-10-14 Maciej Stachowiak <mjs@apple.com>
89 - New JavaScript benchmark
90 http://bugs.webkit.org/show_bug.cgi?id=15515
92 A start on a new JavaScript benchmark, with standalone and
93 browser-hosted drivers.
95 The test content is still incomplete and the drivers could use
96 some more features but there is enough here to make a good start.
98 The drivers compute a 95% confidence interval on the mean for the
99 whole test, each category, and each individual test to make it
100 easier to tell whether differences are statistically
101 significant. The confidence interval can be narrowed by running
104 * TODO: Added. Remaining things that need to be done.
105 * sunspider: Added. Perl script that acts as the standalone test driver.
106 * resources/sunspider-standalone-driver.js: Added. JavaScript part
107 of standalone test driver.
108 * resources/sunspider-analyze-results.js: Added. JavaScript statistical
110 * resources/TEMPLATE.html: Added. Template for browser-hosted tests.
111 * make-hosted: Added. Script to generate browser-hosted tests.
112 * hosted/sunspider.html: Added. Start page for browser-hosted test.
113 * hosted/sunspider-driver.html: Added. Driver for browser-hosted tests.
114 * hosted/sunspider-results.html: Added. Results page for browser-hosted
116 * hosted/sunspider-record-result.js: Added. Helper file for browser-hosted
118 * tests/LIST: Added. List of tests to use.
119 * tests/bitops-3bit-bits-in-byte.js: Added. Some initial test content.
120 * tests/bitops-bits-in-byte.js: Added. Ditto.
121 * tests/bitops-bitwise-and.js: Added. Ditto.
122 * tests/math-cordic.js: Added. Ditto.