Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4931)

Unified Diff: chrome/browser/resources/tracing/tests.html

Issue 10065009: Add an overall test runner to about:tracing (Closed) Base URL: git://localhost/home/nduca/Local/chrome/src@master
Patch Set: More tweaks. Proof that READMEs are useless. Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/tracing/README ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/tracing/tests.html
diff --git a/chrome/browser/resources/tracing/tests.html b/chrome/browser/resources/tracing/tests.html
new file mode 100644
index 0000000000000000000000000000000000000000..c44915e8f6158f9f4d3d32f1dfdfabb98133c246
--- /dev/null
+++ b/chrome/browser/resources/tracing/tests.html
@@ -0,0 +1,38 @@
+<!DOCTYPE html>
+<html>
+<!--
+Copyright (c) 2012 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+<head>
+<title>All Tracing Tests</title>
+<script>
+ tests = [
+ "timeline_model_test.html",
+ "timeline_track_test.html",
+ "linux_perf_importer_test.html",
+ "trace_event_importer_test.html",
+ "profiling_view_test.html",
+ ];
+</script>
+<script src="http://closure-library.googlecode.com/svn/trunk/closure/goog/base.js"></script>
+<script>
+ goog.require('goog.testing.MultiTestRunner');
+</script>
+<link rel="stylesheet" href="http://closure-library.googlecode.com/svn/trunk/closure/goog/css/multitestrunner.css" type="text/css">
+</head>
+<body>
+ <div id="runner"></div>
+ <script>
+ var testRunner = new goog.testing.MultiTestRunner()
+ .setName(document.title)
+ .setBasePath('./')
+ .setStatsBucketSizes(5, 500)
+ .setHidePasses(true)
+ .addTests(tests);
+ testRunner.render(document.getElementById('runner'));
+ testRunner.start();
+ </script>
+</body>
+</html>
« no previous file with comments | « chrome/browser/resources/tracing/README ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698