diff options
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/oetest.py | 4 | ||||
-rw-r--r-- | meta/lib/oeqa/runtime/buildcvs.py | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/runtime/buildiptables.py | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/runtime/buildsudoku.py | 2 |
4 files changed, 0 insertions, 10 deletions
diff --git a/meta/lib/oeqa/oetest.py b/meta/lib/oeqa/oetest.py index 70d12a225e..23a3e5d69f 100644 --- a/meta/lib/oeqa/oetest.py +++ b/meta/lib/oeqa/oetest.py @@ -83,10 +83,6 @@ class oeRuntimeTest(oeTest): self.target = oeRuntimeTest.tc.target super(oeRuntimeTest, self).__init__(methodName) - @classmethod - def restartTarget(self,params=None): - oeRuntimeTest.tc.target.restart(params) - def getmodule(pos=2): # stack returns a list of tuples containg frame information diff --git a/meta/lib/oeqa/runtime/buildcvs.py b/meta/lib/oeqa/runtime/buildcvs.py index f024dfa99a..9bf764d00f 100644 --- a/meta/lib/oeqa/runtime/buildcvs.py +++ b/meta/lib/oeqa/runtime/buildcvs.py @@ -10,7 +10,6 @@ class BuildCvsTest(oeRuntimeTest): @classmethod def setUpClass(self): - self.restartTarget("-m 512") self.project = TargetBuildProject(oeRuntimeTest.tc.target, "http://ftp.gnu.org/non-gnu/cvs/source/feature/1.12.13/cvs-1.12.13.tar.bz2") self.project.download_archive() @@ -29,4 +28,3 @@ class BuildCvsTest(oeRuntimeTest): @classmethod def tearDownClass(self): self.project.clean() - self.restartTarget() diff --git a/meta/lib/oeqa/runtime/buildiptables.py b/meta/lib/oeqa/runtime/buildiptables.py index 88ece3bd8a..50faf5d775 100644 --- a/meta/lib/oeqa/runtime/buildiptables.py +++ b/meta/lib/oeqa/runtime/buildiptables.py @@ -10,7 +10,6 @@ class BuildIptablesTest(oeRuntimeTest): @classmethod def setUpClass(self): - self.restartTarget("-m 512") self.project = TargetBuildProject(oeRuntimeTest.tc.target, "http://netfilter.org/projects/iptables/files/iptables-1.4.13.tar.bz2") self.project.download_archive() @@ -29,4 +28,3 @@ class BuildIptablesTest(oeRuntimeTest): @classmethod def tearDownClass(self): self.project.clean() - self.restartTarget() diff --git a/meta/lib/oeqa/runtime/buildsudoku.py b/meta/lib/oeqa/runtime/buildsudoku.py index 0a7306ddc7..61dc1ff2dc 100644 --- a/meta/lib/oeqa/runtime/buildsudoku.py +++ b/meta/lib/oeqa/runtime/buildsudoku.py @@ -10,7 +10,6 @@ class SudokuTest(oeRuntimeTest): @classmethod def setUpClass(self): - self.restartTarget("-m 512") self.project = TargetBuildProject(oeRuntimeTest.tc.target, "http://downloads.sourceforge.net/project/sudoku-savant/sudoku-savant/sudoku-savant-1.3/sudoku-savant-1.3.tar.bz2") self.project.download_archive() @@ -26,4 +25,3 @@ class SudokuTest(oeRuntimeTest): @classmethod def tearDownClass(self): self.project.clean() - self.restartTarget() |