blob: 47b3885df2ec22909b04de7441bd4710a57cdc57 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001import unittest
2from oeqa.oetest import oeRuntimeTest, skipModule
3from oeqa.utils.decorators import *
4
5def setUpModule():
6 if not oeRuntimeTest.hasFeature("tools-sdk"):
7 skipModule("Image doesn't have tools-sdk in IMAGE_FEATURES")
8
9class 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. ")