diff options
author | Stefan Stanacar <stefanx.stanacar@intel.com> | 2013-04-25 15:11:00 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-29 14:43:50 +0100 |
commit | cc1ed3c1940e4f64534b58de1b5fc6ef90362c9a (patch) | |
tree | 7934cf29cf224cbad14a0245ef0725e391bc4041 /scripts/contrib | |
parent | a7af4541060f62b4019a100d57e0d082794f708b (diff) | |
download | openembedded-core-cc1ed3c1940e4f64534b58de1b5fc6ef90362c9a.tar.gz openembedded-core-cc1ed3c1940e4f64534b58de1b5fc6ef90362c9a.tar.bz2 openembedded-core-cc1ed3c1940e4f64534b58de1b5fc6ef90362c9a.zip |
scripts/contrib/build-perf-test.sh: skip network sanity tests
When your proxy/network connection is unstable the network sanity test
which runs before every build (because we wipe all the files in the build dir)
can influence build time. Appending CONNECTIVITY_CHECK_URIS = ""
in local.conf will disable the check.
Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'scripts/contrib')
-rwxr-xr-x | scripts/contrib/build-perf-test.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/contrib/build-perf-test.sh b/scripts/contrib/build-perf-test.sh index f48220a3c3..ee30409569 100755 --- a/scripts/contrib/build-perf-test.sh +++ b/scripts/contrib/build-perf-test.sh @@ -165,6 +165,10 @@ else echo "DL_DIR = \"$clonedir/build-perf-test/downloads\"" >> conf/local.conf fi +# Sometimes I've noticed big differences in timings for the same commit, on the same machine +# Disabling the network sanity check helps a bit (because of my crappy network connection and/or proxy) +echo "CONNECTIVITY_CHECK_URIS =\"\"" >> conf/local.conf + # # Functions # |