From db1a2a6178fb856330f5c8e0db700b113de030ac Mon Sep 17 00:00:00 2001 From: Stefan Stanacar Date: Wed, 29 Jan 2014 14:24:04 +0200 Subject: oeqa/runtime: drop restartTarget method Restart is a property of a specific target, not of a test class, should a test really need to restart the target the direct method should be called. Also some tests used this to enforce more ram, which makes sense only for qemu targets only (and the inital reason this was needed isn't valid anymore, qemu machines had the default ram size bumped a while ago). (From OE-Core rev: 333a4326082e500bdbcd323af37e183e74adf617) Signed-off-by: Stefan Stanacar Signed-off-by: Richard Purdie --- meta/lib/oeqa/runtime/buildcvs.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'meta/lib/oeqa/runtime/buildcvs.py') 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() -- cgit v1.2.3-54-g00ecf