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

Unified Diff: tools/perf/profile_creators/cookie_profile_extender.py

Issue 1123843002: Disable failing perf unit tests on chromeos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 7 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
Index: tools/perf/profile_creators/cookie_profile_extender.py
diff --git a/tools/perf/profile_creators/cookie_profile_extender.py b/tools/perf/profile_creators/cookie_profile_extender.py
index 615e66e86cb0ca465ad9e1eb66f0418fe9b2037b..e69cb22f6c9ae13c96ec687db6f75d1fafe3acaf 100644
--- a/tools/perf/profile_creators/cookie_profile_extender.py
+++ b/tools/perf/profile_creators/cookie_profile_extender.py
@@ -3,7 +3,11 @@
# found in the LICENSE file.
import multiprocessing
import os
-import sqlite3
+
+try:
+ import sqlite3 # Not present on ChromeOS DUT.
+except ImportError:
+ pass
import page_sets
« no previous file with comments | « tools/perf/measurements/thread_times_unittest.py ('k') | tools/perf/profile_creators/cookie_profile_extender_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698