OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <!-- |
| 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 |
| 6 found in the LICENSE file. |
| 7 --> |
| 8 <head> |
| 9 <title>All Tracing Tests</title> |
| 10 <script> |
| 11 tests = [ |
| 12 "timeline_model_test.html", |
| 13 "timeline_track_test.html", |
| 14 "linux_perf_importer_test.html", |
| 15 "trace_event_importer_test.html", |
| 16 "profiling_view_test.html", |
| 17 ]; |
| 18 </script> |
| 19 <script src="http://closure-library.googlecode.com/svn/trunk/closure/goog/base.j
s"></script> |
| 20 <script> |
| 21 goog.require('goog.testing.MultiTestRunner'); |
| 22 </script> |
| 23 <link rel="stylesheet" href="http://closure-library.googlecode.com/svn/trunk/clo
sure/goog/css/multitestrunner.css" type="text/css"> |
| 24 </head> |
| 25 <body> |
| 26 <div id="runner"></div> |
| 27 <script> |
| 28 var testRunner = new goog.testing.MultiTestRunner() |
| 29 .setName(document.title) |
| 30 .setBasePath('./') |
| 31 .setStatsBucketSizes(5, 500) |
| 32 .setHidePasses(true) |
| 33 .addTests(tests); |
| 34 testRunner.render(document.getElementById('runner')); |
| 35 testRunner.start(); |
| 36 </script> |
| 37 </body> |
| 38 </html> |
OLD | NEW |