diff options
author | ncbray@chromium.org <ncbray@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-12 17:49:01 +0000 |
---|---|---|
committer | ncbray@chromium.org <ncbray@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-12 17:49:01 +0000 |
commit | eaf5178e6992dfa0791eed5e34cb5f66551461a2 (patch) | |
tree | 8c3799c636149195b926b9a235f70b2cfc452916 /ppapi/native_client | |
parent | f33b483a9199423251c7973982d86c80210551c4 (diff) | |
download | chromium_src-eaf5178e6992dfa0791eed5e34cb5f66551461a2.zip chromium_src-eaf5178e6992dfa0791eed5e34cb5f66551461a2.tar.gz chromium_src-eaf5178e6992dfa0791eed5e34cb5f66551461a2.tar.bz2 |
nacl_integration: disable DNS prefetching and sync.
This eliminates possible sources of non-determinism in the integration tests.
BUG= none
Review URL: https://codereview.chromium.org/12213117
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181946 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/native_client')
-rwxr-xr-x | ppapi/native_client/tools/browser_tester/browsertester/browserlauncher.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ppapi/native_client/tools/browser_tester/browsertester/browserlauncher.py b/ppapi/native_client/tools/browser_tester/browsertester/browserlauncher.py index 1b25f203..44d38af 100755 --- a/ppapi/native_client/tools/browser_tester/browsertester/browserlauncher.py +++ b/ppapi/native_client/tools/browser_tester/browsertester/browserlauncher.py @@ -271,6 +271,12 @@ class ChromeLauncher(BrowserLauncher): # Windows (see http://crbug.com/169941). '--disable-web-resources', '--disable-preconnect', + # This is speculative, sync should not occur with a clean profile. + '--disable-sync', + # This prevents Chrome from making "hidden" network requests at + # startup. These requests could be a source of non-determinism, + # and they also add noise to the netlogs. + '--dns-prefetch-disable', '--no-first-run', '--no-default-browser-check', '--log-level=1', |