summaryrefslogtreecommitdiff
path: root/meta/lib/oeqa/runtime_cases/df.py
diff options
context:
space:
mode:
authorMariano Lopez <mariano.lopez@linux.intel.com>2016-11-01 07:48:16 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-23 12:03:57 +0000
commitb39c61f2d442c79d03b73e8ffd104996fcb2177e (patch)
treedb476e1a099b5cb6d45d80f3b25a2b205e583958 /meta/lib/oeqa/runtime_cases/df.py
parent2aa5a4954d7610f31875ba7e655f25f8892517b6 (diff)
downloadopenembedded-core-b39c61f2d442c79d03b73e8ffd104996fcb2177e.tar.gz
openembedded-core-b39c61f2d442c79d03b73e8ffd104996fcb2177e.tar.bz2
openembedded-core-b39c61f2d442c79d03b73e8ffd104996fcb2177e.zip
oeqa/runtime/cases: Migrate runtime tests.
This migrates current runtime test suite to be used with the new framework. [YOCTO #10234] Signed-off-by: Mariano Lopez <mariano.lopez@linux.intel.com>
Diffstat (limited to 'meta/lib/oeqa/runtime_cases/df.py')
-rw-r--r--meta/lib/oeqa/runtime_cases/df.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/meta/lib/oeqa/runtime_cases/df.py b/meta/lib/oeqa/runtime_cases/df.py
deleted file mode 100644
index 09569d5ff6..0000000000
--- a/meta/lib/oeqa/runtime_cases/df.py
+++ /dev/null
@@ -1,12 +0,0 @@
-import unittest
-from oeqa.oetest import oeRuntimeTest
-from oeqa.utils.decorators import *
-
-
-class DfTest(oeRuntimeTest):
-
- @testcase(234)
- @skipUnlessPassed("test_ssh")
- def test_df(self):
- (status,output) = self.target.run("df / | sed -n '2p' | awk '{print $4}'")
- self.assertTrue(int(output)>5120, msg="Not enough space on image. Current size is %s" % output)