aboutsummaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime_cases/scanelf.py
diff options
context:
space:
mode:
authorAníbal Limón <anibal.limon@linux.intel.com>2016-10-27 16:39:47 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-23 12:03:55 +0000
commit637b712096e9d230e15b1a432a561e4118db34c8 (patch)
tree3cdde5ee757e754a8651f0caa093680f4377ccd8 /meta/lib/oeqa/runtime_cases/scanelf.py
parentf099302efe8f222c3e4ae3604429f5ede4fd8c67 (diff)
downloadopenembedded-core-contrib-637b712096e9d230e15b1a432a561e4118db34c8.tar.gz
oeqa/runtime: Move to runtime_cases
The new oeqa core framework will modify the structure of the runtime folder the new runtime folder will have python code inside to support runtime test cases. Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Diffstat (limited to 'meta/lib/oeqa/runtime_cases/scanelf.py')
-rw-r--r--meta/lib/oeqa/runtime_cases/scanelf.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/meta/lib/oeqa/runtime_cases/scanelf.py b/meta/lib/oeqa/runtime_cases/scanelf.py
new file mode 100644
index 0000000000..67e02ff455
--- /dev/null
+++ b/meta/lib/oeqa/runtime_cases/scanelf.py
@@ -0,0 +1,28 @@
+import unittest
+from oeqa.oetest import oeRuntimeTest, skipModule
+from oeqa.utils.decorators import *
+
+def setUpModule():
+ if not oeRuntimeTest.hasPackage("pax-utils"):
+ skipModule("pax-utils package not installed")
+
+class ScanelfTest(oeRuntimeTest):
+
+ def setUpLocal(self):
+ self.scancmd = 'scanelf --quiet --recursive --mount --ldpath --path'
+
+ @testcase(966)
+ @skipUnlessPassed('test_ssh')
+ def test_scanelf_textrel(self):
+ # print TEXTREL information
+ self.scancmd += " --textrel"
+ (status, output) = self.target.run(self.scancmd)
+ self.assertEqual(output.strip(), "", "\n".join([self.scancmd, output]))
+
+ @testcase(967)
+ @skipUnlessPassed('test_ssh')
+ def test_scanelf_rpath(self):
+ # print RPATH information
+ self.scancmd += " --rpath"
+ (status, output) = self.target.run(self.scancmd)
+ self.assertEqual(output.strip(), "", "\n".join([self.scancmd, output]))