Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | import unittest |
| 2 | from oeqa.oetest import oeRuntimeTest, skipModule |
| 3 | from oeqa.utils.decorators import * |
| 4 | |
| 5 | def setUpModule(): |
| 6 | if not oeRuntimeTest.hasFeature("tools-sdk"): |
| 7 | skipModule("Image doesn't have tools-sdk in IMAGE_FEATURES") |
| 8 | |
| 9 | class LddTest(oeRuntimeTest): |
| 10 | |
| 11 | @testcase(962) |
| 12 | @skipUnlessPassed('test_ssh') |
| 13 | def test_ldd_exists(self): |
| 14 | (status, output) = self.target.run('which ldd') |
| 15 | self.assertEqual(status, 0, msg = "ldd does not exist in PATH: which ldd: %s" % output) |
| 16 | |
| 17 | @testcase(239) |
| 18 | @skipUnlessPassed('test_ldd_exists') |
| 19 | def test_ldd_rtldlist_check(self): |
| 20 | (status, output) = self.target.run('for i in $(which ldd | xargs cat | grep "^RTLDLIST"|cut -d\'=\' -f2|tr -d \'"\'); do test -f $i && echo $i && break; done') |
| 21 | self.assertEqual(status, 0, msg = "ldd path not correct or RTLDLIST files don't exist. ") |