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 'overlay_test.html', 13 'timeline_model_test.html', 14 'timeline_track_test.html', 15 'linux_perf_importer_test.html', 16 'trace_event_importer_test.html', 17 'profiling_view_test.html', 18 'timeline_test.html', 19 'timeline_view_test.html', 20 'timeline_analysis_test.html', 21 ]; 22 </script> 23 <script src="http://closure-library.googlecode.com/svn/trunk/closure/goog/base.js"></script> 24 <script> 25 goog.require('goog.testing.MultiTestRunner'); 26 </script> 27 <link rel="stylesheet" href="http://closure-library.googlecode.com/svn/trunk/closure/goog/css/multitestrunner.css" type="text/css"> 28 </head> 29 <body> 30 <div id="runner"></div> 31 <script> 32 var testRunner = new goog.testing.MultiTestRunner() 33 .setName(document.title) 34 .setBasePath('./') 35 .setPoolSize(8) 36 .setStatsBucketSizes(5, 500) 37 .setHidePasses(true) 38 .addTests(tests); 39 testRunner.render(document.getElementById('runner')); 40 testRunner.start(); 41 </script> 42 </body> 43 </html> 44