summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--DEPS3
-rw-r--r--chrome/test/data/perf/frame_rate/blank/test.html4
-rw-r--r--chrome/test/data/perf/frame_rate/head.js2
-rw-r--r--chrome/test/perf/frame_rate/frame_rate_tests.cc6
5 files changed, 8 insertions, 8 deletions
diff --git a/.gitignore b/.gitignore
index c8ee0f2..da7d841 100644
--- a/.gitignore
+++ b/.gitignore
@@ -56,6 +56,7 @@ v8.log
/chrome/test/data/firefox3_searchplugins
/chrome/test/data/layout_tests
/chrome/test/data/osdd
+/chrome/test/data/perf/frame_rate/content
/chrome/test/data/plugin
/chrome/test/data/pyauto_private
/chrome/tools/memory
diff --git a/DEPS b/DEPS
index 4b51f98..d237ec3 100644
--- a/DEPS
+++ b/DEPS
@@ -135,6 +135,9 @@ deps = {
"src/tools/page_cycler/acid3":
"/trunk/deps/page_cycler/acid3@19546",
+ "src/chrome/test/data/perf/frame_rate/content":
+ "/trunk/deps/frame_rate/content@93671",
+
"src/third_party/bidichecker":
(Var("googlecode_url") % "bidichecker") + "/trunk/lib@4",
diff --git a/chrome/test/data/perf/frame_rate/blank/test.html b/chrome/test/data/perf/frame_rate/blank/test.html
deleted file mode 100644
index aa8ac5c..0000000
--- a/chrome/test/data/perf/frame_rate/blank/test.html
+++ /dev/null
@@ -1,4 +0,0 @@
-<html>
-<head><script src="../head.js"></script></head>
-<body style="height: 10000px"></body>
-</html>
diff --git a/chrome/test/data/perf/frame_rate/head.js b/chrome/test/data/perf/frame_rate/head.js
index e9ee256..870b8d3 100644
--- a/chrome/test/data/perf/frame_rate/head.js
+++ b/chrome/test/data/perf/frame_rate/head.js
@@ -32,8 +32,6 @@
* {"time_ms":1, "y":0},
* ... pasted output ...
* ],
- *
- * @author jrt@chromium.org (Joe Tessler)
*/
var __running = false;
diff --git a/chrome/test/perf/frame_rate/frame_rate_tests.cc b/chrome/test/perf/frame_rate/frame_rate_tests.cc
index 1c5839d..43b9ec1 100644
--- a/chrome/test/perf/frame_rate/frame_rate_tests.cc
+++ b/chrome/test/perf/frame_rate/frame_rate_tests.cc
@@ -30,6 +30,7 @@ class FrameRateTest : public UIPerfTest {
PathService::Get(chrome::DIR_TEST_DATA, &test_path);
test_path = test_path.Append(FILE_PATH_LITERAL("perf"));
test_path = test_path.Append(FILE_PATH_LITERAL("frame_rate"));
+ test_path = test_path.Append(FILE_PATH_LITERAL("content"));
test_path = test_path.AppendASCII(name);
return test_path;
}
@@ -92,13 +93,14 @@ class FrameRateTest_Reference : public FrameRateTest {
}
};
-#define ALL_FRAME_RATE_TESTS(content) \
+#define FRAME_RATE_TEST(content) \
TEST_F(FrameRateTest, content) { \
RunTest(#content, ""); \
} \
TEST_F(FrameRateTest_Reference, content) { \
RunTest(#content, "_ref"); \
}
-ALL_FRAME_RATE_TESTS(blank);
+FRAME_RATE_TEST(blank);
+FRAME_RATE_TEST(googleblog);
} // namespace