From 6d0f1d30d45ed28291d124682bd71eaa92ea79a2 Mon Sep 17 00:00:00 2001 From: Stefan Stanacar Date: Sun, 9 Feb 2014 12:39:30 +0200 Subject: oeqa/utils: targetbuild: take proxy into account A previous commit broke downloads when proxies are involved, let's fix it. (From OE-Core rev: 97e263b99cbe8184a74f80738fd471cfdef29e0c) Signed-off-by: Stefan Stanacar Signed-off-by: Richard Purdie --- meta/lib/oeqa/runtime/buildcvs.py | 2 +- meta/lib/oeqa/runtime/buildiptables.py | 2 +- meta/lib/oeqa/runtime/buildsudoku.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'meta/lib/oeqa/runtime') diff --git a/meta/lib/oeqa/runtime/buildcvs.py b/meta/lib/oeqa/runtime/buildcvs.py index 9bf764d00f..f1fbf19c1f 100644 --- a/meta/lib/oeqa/runtime/buildcvs.py +++ b/meta/lib/oeqa/runtime/buildcvs.py @@ -10,7 +10,7 @@ class BuildCvsTest(oeRuntimeTest): @classmethod def setUpClass(self): - self.project = TargetBuildProject(oeRuntimeTest.tc.target, + self.project = TargetBuildProject(oeRuntimeTest.tc.target, oeRuntimeTest.tc.d, "http://ftp.gnu.org/non-gnu/cvs/source/feature/1.12.13/cvs-1.12.13.tar.bz2") self.project.download_archive() diff --git a/meta/lib/oeqa/runtime/buildiptables.py b/meta/lib/oeqa/runtime/buildiptables.py index 50faf5d775..f6061a7f98 100644 --- a/meta/lib/oeqa/runtime/buildiptables.py +++ b/meta/lib/oeqa/runtime/buildiptables.py @@ -10,7 +10,7 @@ class BuildIptablesTest(oeRuntimeTest): @classmethod def setUpClass(self): - self.project = TargetBuildProject(oeRuntimeTest.tc.target, + self.project = TargetBuildProject(oeRuntimeTest.tc.target, oeRuntimeTest.tc.d, "http://netfilter.org/projects/iptables/files/iptables-1.4.13.tar.bz2") self.project.download_archive() diff --git a/meta/lib/oeqa/runtime/buildsudoku.py b/meta/lib/oeqa/runtime/buildsudoku.py index 61dc1ff2dc..a754f1d9ea 100644 --- a/meta/lib/oeqa/runtime/buildsudoku.py +++ b/meta/lib/oeqa/runtime/buildsudoku.py @@ -10,7 +10,7 @@ class SudokuTest(oeRuntimeTest): @classmethod def setUpClass(self): - self.project = TargetBuildProject(oeRuntimeTest.tc.target, + self.project = TargetBuildProject(oeRuntimeTest.tc.target, oeRuntimeTest.tc.d, "http://downloads.sourceforge.net/project/sudoku-savant/sudoku-savant/sudoku-savant-1.3/sudoku-savant-1.3.tar.bz2") self.project.download_archive() -- cgit 1.2.3-korg