OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <!-- | 3 <!-- |
4 Copyright (c) 2012 The Chromium Authors. All rights reserved. | 4 Copyright (c) 2012 The Chromium Authors. All rights reserved. |
5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
6 found in the LICENSE file. | 6 found in the LICENSE file. |
7 --> | 7 --> |
8 <head> | 8 <head> |
9 <title>All Tracing Tests</title> | 9 <title>All Tracing Tests</title> |
10 <script> | 10 <script> |
11 tests = [ | 11 tests = [ |
12 'overlay_test.html', | 12 'overlay_test.html', |
13 'timeline_model_test.html', | 13 'timeline_model_test.html', |
14 'timeline_track_test.html', | 14 'timeline_track_test.html', |
15 'linux_perf_importer_test.html', | 15 'linux_perf_importer_test.html', |
16 'trace_event_importer_test.html', | 16 'trace_event_importer_test.html', |
17 'profiling_view_test.html', | 17 'profiling_view_test.html', |
18 'timeline_test.html', | 18 'timeline_test.html', |
19 'timeline_view_test.html', | 19 'timeline_view_test.html', |
| 20 'timeline_analysis_test.html', |
20 ]; | 21 ]; |
21 </script> | 22 </script> |
22 <script src="http://closure-library.googlecode.com/svn/trunk/closure/goog/base.j
s"></script> | 23 <script src="http://closure-library.googlecode.com/svn/trunk/closure/goog/base.j
s"></script> |
23 <script> | 24 <script> |
24 goog.require('goog.testing.MultiTestRunner'); | 25 goog.require('goog.testing.MultiTestRunner'); |
25 </script> | 26 </script> |
26 <link rel="stylesheet" href="http://closure-library.googlecode.com/svn/trunk/clo
sure/goog/css/multitestrunner.css" type="text/css"> | 27 <link rel="stylesheet" href="http://closure-library.googlecode.com/svn/trunk/clo
sure/goog/css/multitestrunner.css" type="text/css"> |
27 </head> | 28 </head> |
28 <body> | 29 <body> |
29 <div id="runner"></div> | 30 <div id="runner"></div> |
30 <script> | 31 <script> |
31 var testRunner = new goog.testing.MultiTestRunner() | 32 var testRunner = new goog.testing.MultiTestRunner() |
32 .setName(document.title) | 33 .setName(document.title) |
33 .setBasePath('./') | 34 .setBasePath('./') |
34 .setPoolSize(8) | 35 .setPoolSize(8) |
35 .setStatsBucketSizes(5, 500) | 36 .setStatsBucketSizes(5, 500) |
36 .setHidePasses(true) | 37 .setHidePasses(true) |
37 .addTests(tests); | 38 .addTests(tests); |
38 testRunner.render(document.getElementById('runner')); | 39 testRunner.render(document.getElementById('runner')); |
39 testRunner.start(); | 40 testRunner.start(); |
40 </script> | 41 </script> |
41 </body> | 42 </body> |
42 </html> | 43 </html> |
OLD | NEW |