1 2007-10-20 Maciej Stachowiak <mjs@apple.com>
5 - Add more new tests, mostly from the computer language shootout. Not normalized yet.
9 * tests/access-binary-trees.js: Added.
10 * tests/access-nsieve.js: Added.
11 * tests/bitops-nsieve-bits.js: Added.
12 * tests/math-partial-sums.js: Added.
13 * tests/math-spectral-norm.js: Added.
14 * tests/string-fasta.js: Added.
16 2007-10-20 Maciej Stachowiak <mjs@apple.com>
20 * TODO: Updated to note areas that are now well-covered.
22 - Change the tests and the driver to avoid leaving large object
23 graphs hanging around, since that throws off the subsequent tests.
25 * resources/sunspider-standalone-driver.js:
28 * tests/3d-raytrace.js:
29 * tests/bitops-bitwise-and.js:
30 * tests/string-base64.js:
31 * tests/string-tagcloud.js:
33 2007-10-20 Maciej Stachowiak <mjs@apple.com>
37 - Rebalance test complexity.
39 Scaled all the tests so they take 400-600ms on a reasonably normal user setup:
41 Internet Explorer 7, Window XP, Dell Latitude D810 with a 2.13GHz Pentium M
43 However, for some tests, IE7 was a huge outlier compared to other
44 major browsers. For those tests, I used Firefox 2.0.0.8 on the
45 same OS and hardware as a normalization basis.
48 * tests/3d-raytrace.js:
49 * tests/bitops-3bit-bits-in-byte.js:
50 * tests/bitops-bits-in-byte.js:
51 * tests/bitops-bitwise-and.js:
52 * tests/math-cordic.js:
53 * tests/string-base64.js:
54 * tests/string-tagcloud.js:
55 * tests/string-unpack-code.js:
57 2007-10-20 Maciej Stachowiak <mjs@apple.com>
61 - Fix the browser-hosted driver to be compatible with Safari 2
63 * hosted/sunspider-driver.html:
65 2007-10-20 Maciej Stachowiak <mjs@apple.com>
67 Rubber stamped by Hyatt.
69 - Add BSD license notice to cordic test, the original author said to do so.
71 * tests/math-cordic.js:
73 2007-10-18 Maciej Stachowiak <mjs@apple.com>
77 - Support Windows and Windows browsers.
79 * hosted/sunspider-results.html: Display results correctly in IE.
80 * sunspider: tweaks to work on Windows, and with spaces in the path.
82 2007-10-18 Maciej Stachowiak <mjs@apple.com>
84 Rubber stamped by Oliver.
86 * tests/string-tagcloud.js: Remove stray print()
88 2007-10-17 Maciej Stachowiak <mjs@apple.com>
92 Add some string test cases.
94 * tests/string-base64.js: Added. Does base64 encoding and decoding.
95 * tests/string-tagcloud.js: Added. Parses a JSON string and
96 generates tagcloud HTML markup based on the data.
97 * tests/string-unpack-code.js: Added. Unpack compressed versions of
98 four of the most popular JavaScript libraries.
99 * tests/LIST: Added the new tests.
101 2007-10-16 Maciej Stachowiak <mjs@apple.com>
105 * TODO: Updated with info on how to do the stats properly.
107 * hosted/sunspider-driver.html: Reduce timeout from 500 to 200 to
108 avoid overly slowing down the benchmark.
110 Added some 3D-related test cases.
112 * tests/3d-cube.js: Added.
113 * tests/3d-morph.js: Added.
114 * tests/3d-raytrace.js: Added.
117 2007-10-14 Maciej Stachowiak <mjs@apple.com>
121 - New JavaScript benchmark
122 http://bugs.webkit.org/show_bug.cgi?id=15515
124 A start on a new JavaScript benchmark, with standalone and
125 browser-hosted drivers.
127 The test content is still incomplete and the drivers could use
128 some more features but there is enough here to make a good start.
130 The drivers compute a 95% confidence interval on the mean for the
131 whole test, each category, and each individual test to make it
132 easier to tell whether differences are statistically
133 significant. The confidence interval can be narrowed by running
136 * TODO: Added. Remaining things that need to be done.
137 * sunspider: Added. Perl script that acts as the standalone test driver.
138 * resources/sunspider-standalone-driver.js: Added. JavaScript part
139 of standalone test driver.
140 * resources/sunspider-analyze-results.js: Added. JavaScript statistical
142 * resources/TEMPLATE.html: Added. Template for browser-hosted tests.
143 * make-hosted: Added. Script to generate browser-hosted tests.
144 * hosted/sunspider.html: Added. Start page for browser-hosted test.
145 * hosted/sunspider-driver.html: Added. Driver for browser-hosted tests.
146 * hosted/sunspider-results.html: Added. Results page for browser-hosted
148 * hosted/sunspider-record-result.js: Added. Helper file for browser-hosted
150 * tests/LIST: Added. List of tests to use.
151 * tests/bitops-3bit-bits-in-byte.js: Added. Some initial test content.
152 * tests/bitops-bits-in-byte.js: Added. Ditto.
153 * tests/bitops-bitwise-and.js: Added. Ditto.
154 * tests/math-cordic.js: Added. Ditto.