1 2007-10-20 Maciej Stachowiak <mjs@apple.com>
5 * TODO: Updated to note areas that are now well-covered.
7 - Change the tests and the driver to avoid leaving large object
8 graphs hanging around, since that throws off the subsequent tests.
10 * resources/sunspider-standalone-driver.js:
13 * tests/3d-raytrace.js:
14 * tests/bitops-bitwise-and.js:
15 * tests/string-base64.js:
16 * tests/string-tagcloud.js:
18 2007-10-20 Maciej Stachowiak <mjs@apple.com>
22 - Rebalance test complexity.
24 Scaled all the tests so they take 400-600ms on a reasonably normal user setup:
26 Internet Explorer 7, Window XP, Dell Latitude D810 with a 2.13GHz Pentium M
28 However, for some tests, IE7 was a huge outlier compared to other
29 major browsers. For those tests, I used Firefox 2.0.0.8 on the
30 same OS and hardware as a normalization basis.
33 * tests/3d-raytrace.js:
34 * tests/bitops-3bit-bits-in-byte.js:
35 * tests/bitops-bits-in-byte.js:
36 * tests/bitops-bitwise-and.js:
37 * tests/math-cordic.js:
38 * tests/string-base64.js:
39 * tests/string-tagcloud.js:
40 * tests/string-unpack-code.js:
42 2007-10-20 Maciej Stachowiak <mjs@apple.com>
46 - Fix the browser-hosted driver to be compatible with Safari 2
48 * hosted/sunspider-driver.html:
50 2007-10-20 Maciej Stachowiak <mjs@apple.com>
52 Rubber stamped by Hyatt.
54 - Add BSD license notice to cordic test, the original author said to do so.
56 * tests/math-cordic.js:
58 2007-10-18 Maciej Stachowiak <mjs@apple.com>
62 - Support Windows and Windows browsers.
64 * hosted/sunspider-results.html: Display results correctly in IE.
65 * sunspider: tweaks to work on Windows, and with spaces in the path.
67 2007-10-18 Maciej Stachowiak <mjs@apple.com>
69 Rubber stamped by Oliver.
71 * tests/string-tagcloud.js: Remove stray print()
73 2007-10-17 Maciej Stachowiak <mjs@apple.com>
77 Add some string test cases.
79 * tests/string-base64.js: Added. Does base64 encoding and decoding.
80 * tests/string-tagcloud.js: Added. Parses a JSON string and
81 generates tagcloud HTML markup based on the data.
82 * tests/string-unpack-code.js: Added. Unpack compressed versions of
83 four of the most popular JavaScript libraries.
84 * tests/LIST: Added the new tests.
86 2007-10-16 Maciej Stachowiak <mjs@apple.com>
90 * TODO: Updated with info on how to do the stats properly.
92 * hosted/sunspider-driver.html: Reduce timeout from 500 to 200 to
93 avoid overly slowing down the benchmark.
95 Added some 3D-related test cases.
97 * tests/3d-cube.js: Added.
98 * tests/3d-morph.js: Added.
99 * tests/3d-raytrace.js: Added.
102 2007-10-14 Maciej Stachowiak <mjs@apple.com>
106 - New JavaScript benchmark
107 http://bugs.webkit.org/show_bug.cgi?id=15515
109 A start on a new JavaScript benchmark, with standalone and
110 browser-hosted drivers.
112 The test content is still incomplete and the drivers could use
113 some more features but there is enough here to make a good start.
115 The drivers compute a 95% confidence interval on the mean for the
116 whole test, each category, and each individual test to make it
117 easier to tell whether differences are statistically
118 significant. The confidence interval can be narrowed by running
121 * TODO: Added. Remaining things that need to be done.
122 * sunspider: Added. Perl script that acts as the standalone test driver.
123 * resources/sunspider-standalone-driver.js: Added. JavaScript part
124 of standalone test driver.
125 * resources/sunspider-analyze-results.js: Added. JavaScript statistical
127 * resources/TEMPLATE.html: Added. Template for browser-hosted tests.
128 * make-hosted: Added. Script to generate browser-hosted tests.
129 * hosted/sunspider.html: Added. Start page for browser-hosted test.
130 * hosted/sunspider-driver.html: Added. Driver for browser-hosted tests.
131 * hosted/sunspider-results.html: Added. Results page for browser-hosted
133 * hosted/sunspider-record-result.js: Added. Helper file for browser-hosted
135 * tests/LIST: Added. List of tests to use.
136 * tests/bitops-3bit-bits-in-byte.js: Added. Some initial test content.
137 * tests/bitops-bits-in-byte.js: Added. Ditto.
138 * tests/bitops-bitwise-and.js: Added. Ditto.
139 * tests/math-cordic.js: Added. Ditto.