3 # Copyright (C) 2007 Apple Inc. All rights reserved.
4 # Copyright (C) 2007 Eric Seidel <eric@webkit.org>
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions
9 # 1. Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer.
11 # 2. Redistributions in binary form must reproduce the above copyright
12 # notice, this list of conditions and the following disclaimer in the
13 # documentation and/or other materials provided with the distribution.
15 # THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
16 # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
19 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
20 # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21 # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
22 # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
23 # OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 use POSIX qw(strftime);
38 my $testRuns = 5; # This number may be different from what ./sunspider defaults to (that's OK)
40 my $programName = basename($0);
42 Usage: $programName --shell=[path] [options]
43 --help Show this help message
44 --shell Path to JavaScript shell
45 --runs Number of times to run tests (default: $testRuns)
46 --tests Only run tests matching provided pattern
47 --shark Sample with the Mac OS X "Shark" performance testing tool (implies --runs=1)
48 --shark20 Like --shark, but with a 20 microsecond sampling interval
51 GetOptions('runs=i' => \$testRuns,
52 'shell=s' => \$jsShellPath,
53 'shark' => \$runShark,
54 'shark20' => \$runShark20,
55 'tests=s' => \$testsPattern,
56 'help' => \$showHelp);
58 $runShark = 20 if $runShark20;
59 $testRuns = 1 if $runShark;
61 if (!$jsShellPath || $showHelp) {
68 my ($contents, $path) = @_;
69 open FILE, ">", $path or die "Failed to open $path";
76 my %uniqueCategories = ();
80 open TESTLIST, "<", "tests/LIST" or die;
83 next unless !$testsPattern || /$testsPattern/;
88 if (!$uniqueCategories{$category}) {
89 push @categories, $category;
90 $uniqueCategories{$category} = $category;
96 my $timeString = strftime "%Y-%m-%d-%H.%M.%S", localtime $^T;
97 my $prefixFile = "tmp/sunspider-test-prefix.js";
98 my $resultsFile = "tmp/sunspider-results-$timeString.js";
100 sub writePrefixFile()
102 my $prefix = "var tests = [ " . join(", ", map { '"' . $_ . '"' } @tests) . " ];\n";
103 $prefix .= "var categories = [ " . join(", ", map { '"' . $_ . '"' } @categories) . " ];\n";
106 dumpToFile($prefix, $prefixFile);
112 my $shellArgs = "-f $prefixFile -f resources/sunspider-standalone-driver.js 2> /dev/null";
115 my $intervalArg = $useShark == 20 ? "-I 20u" : "";
116 $output = `shark $intervalArg -i -1-q "$jsShellPath" $shellArgs`;
118 $output = `"$jsShellPath" $shellArgs | grep -v break`;
125 print STDERR "Found " . scalar(@tests) . " tests matching '" . $testsPattern . "'\n";
127 print STDERR "Found " . scalar(@tests) . " tests\n";
129 die "No tests to run" unless scalar(@tests);
130 print STDERR "Running SunSpider once for warmup, then " . ($runShark ? "under Shark" : "$testRuns time" . ($testRuns == 1 ? "" : "s")) . "\n";
134 print "Discarded first run.\n";
141 while ($count++ < $testRuns) {
142 $result = runTestsOnce($runShark);
143 $result =~ s/\r\n/\n/g;
145 push @results, $result;
147 print ",\n" unless ($count == $testRuns);
151 my $output = "var output = [\n" . join(",\n", @results) . "\n];\n";
152 dumpToFile($output, $resultsFile);
154 system("$jsShellPath", "-f", $prefixFile, "-f", $resultsFile, "-f", "resources/sunspider-analyze-results.js");
158 my $newestMShark = 0;
159 opendir DIR, "." or die;
160 for my $file (readdir DIR) {
161 if ($file =~ /\.mshark$/) {
163 if ($age < $newestAge) {
164 $newestMShark = $file;
171 my $profileFile = "tmp/sunspider-profile-$timeString.mshark";
172 rename $newestMShark, $profileFile or die;
173 exec "/usr/bin/open", $profileFile;