diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-18 15:14:16 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-23 11:57:25 +0100 |
commit | 86d30d756a60d181a95cf07041920a367a0cd0ba (patch) | |
tree | 950353e2e1cd1e7b812ff941b4d06076acd2c752 /meta/lib | |
parent | f98c8490099a02c42306e1671579631a61c9df73 (diff) | |
download | poky-86d30d756a60d181a95cf07041920a367a0cd0ba.tar.gz |
meta: Add explict getVar param for (non) expansion
Rather than just use d.getVar(X), use the more explict d.getVar(X, False)
since at some point in the future, having the default of expansion would
be nice. This is the first step towards that.
This patch was mostly made using the command:
sed -e 's:\(getVar([^,()]*\)\s*):\1, False):g' -i `grep -ril getVar *`
(From OE-Core rev: ab7c1d239b122c8e549e8112c88fd46c9e2b061b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oe/package_manager.py | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/controllers/masterimage.py | 6 | ||||
-rw-r--r-- | meta/lib/oeqa/runtime/skeletoninit.py | 4 | ||||
-rw-r--r-- | meta/lib/oeqa/runtime/syslog.py | 4 | ||||
-rw-r--r-- | meta/lib/oeqa/targetcontrol.py | 2 |
5 files changed, 9 insertions, 9 deletions
diff --git a/meta/lib/oe/package_manager.py b/meta/lib/oe/package_manager.py index fffe11d150..98abcdb56c 100644 --- a/meta/lib/oe/package_manager.py +++ b/meta/lib/oe/package_manager.py | |||
@@ -1167,7 +1167,7 @@ class RpmPM(PackageManager): | |||
1167 | return | 1167 | return |
1168 | 1168 | ||
1169 | def save_rpmpostinst(self, pkg): | 1169 | def save_rpmpostinst(self, pkg): |
1170 | mlibs = (self.d.getVar('MULTILIB_GLOBAL_VARIANTS') or "").split() | 1170 | mlibs = (self.d.getVar('MULTILIB_GLOBAL_VARIANTS', False) or "").split() |
1171 | 1171 | ||
1172 | new_pkg = pkg | 1172 | new_pkg = pkg |
1173 | # Remove any multilib prefix from the package name | 1173 | # Remove any multilib prefix from the package name |
diff --git a/meta/lib/oeqa/controllers/masterimage.py b/meta/lib/oeqa/controllers/masterimage.py index 311f0cf68c..522f9ebd76 100644 --- a/meta/lib/oeqa/controllers/masterimage.py +++ b/meta/lib/oeqa/controllers/masterimage.py | |||
@@ -52,7 +52,7 @@ class MasterImageHardwareTarget(oeqa.targetcontrol.BaseTarget): | |||
52 | # test rootfs + kernel | 52 | # test rootfs + kernel |
53 | self.image_fstype = self.get_image_fstype(d) | 53 | self.image_fstype = self.get_image_fstype(d) |
54 | self.rootfs = os.path.join(d.getVar("DEPLOY_DIR_IMAGE", True), d.getVar("IMAGE_LINK_NAME", True) + '.' + self.image_fstype) | 54 | self.rootfs = os.path.join(d.getVar("DEPLOY_DIR_IMAGE", True), d.getVar("IMAGE_LINK_NAME", True) + '.' + self.image_fstype) |
55 | self.kernel = os.path.join(d.getVar("DEPLOY_DIR_IMAGE", True), d.getVar("KERNEL_IMAGETYPE") + '-' + d.getVar('MACHINE') + '.bin') | 55 | self.kernel = os.path.join(d.getVar("DEPLOY_DIR_IMAGE", True), d.getVar("KERNEL_IMAGETYPE", False) + '-' + d.getVar('MACHINE', False) + '.bin') |
56 | if not os.path.isfile(self.rootfs): | 56 | if not os.path.isfile(self.rootfs): |
57 | # we could've checked that IMAGE_FSTYPES contains tar.gz but the config for running testimage might not be | 57 | # we could've checked that IMAGE_FSTYPES contains tar.gz but the config for running testimage might not be |
58 | # the same as the config with which the image was build, ie | 58 | # the same as the config with which the image was build, ie |
@@ -73,10 +73,10 @@ class MasterImageHardwareTarget(oeqa.targetcontrol.BaseTarget): | |||
73 | # e.g: TEST_POWERCONTROL_CMD = "/home/user/myscripts/powercontrol.py ${MACHINE} what-ever-other-args-the-script-wants" | 73 | # e.g: TEST_POWERCONTROL_CMD = "/home/user/myscripts/powercontrol.py ${MACHINE} what-ever-other-args-the-script-wants" |
74 | # the command should take as the last argument "off" and "on" and "cycle" (off, on) | 74 | # the command should take as the last argument "off" and "on" and "cycle" (off, on) |
75 | self.powercontrol_cmd = d.getVar("TEST_POWERCONTROL_CMD", True) or None | 75 | self.powercontrol_cmd = d.getVar("TEST_POWERCONTROL_CMD", True) or None |
76 | self.powercontrol_args = d.getVar("TEST_POWERCONTROL_EXTRA_ARGS") or "" | 76 | self.powercontrol_args = d.getVar("TEST_POWERCONTROL_EXTRA_ARGS", False) or "" |
77 | 77 | ||
78 | self.serialcontrol_cmd = d.getVar("TEST_SERIALCONTROL_CMD", True) or None | 78 | self.serialcontrol_cmd = d.getVar("TEST_SERIALCONTROL_CMD", True) or None |
79 | self.serialcontrol_args = d.getVar("TEST_SERIALCONTROL_EXTRA_ARGS") or "" | 79 | self.serialcontrol_args = d.getVar("TEST_SERIALCONTROL_EXTRA_ARGS", False) or "" |
80 | 80 | ||
81 | self.origenv = os.environ | 81 | self.origenv = os.environ |
82 | if self.powercontrol_cmd or self.serialcontrol_cmd: | 82 | if self.powercontrol_cmd or self.serialcontrol_cmd: |
diff --git a/meta/lib/oeqa/runtime/skeletoninit.py b/meta/lib/oeqa/runtime/skeletoninit.py index 7c7f402e5d..cb0cb9b4cf 100644 --- a/meta/lib/oeqa/runtime/skeletoninit.py +++ b/meta/lib/oeqa/runtime/skeletoninit.py | |||
@@ -13,7 +13,7 @@ def setUpModule(): | |||
13 | class SkeletonBasicTest(oeRuntimeTest): | 13 | class SkeletonBasicTest(oeRuntimeTest): |
14 | 14 | ||
15 | @skipUnlessPassed('test_ssh') | 15 | @skipUnlessPassed('test_ssh') |
16 | @unittest.skipIf("systemd" == oeRuntimeTest.tc.d.getVar("VIRTUAL-RUNTIME_init_manager"), "Not appropiate for systemd image") | 16 | @unittest.skipIf("systemd" == oeRuntimeTest.tc.d.getVar("VIRTUAL-RUNTIME_init_manager", False), "Not appropiate for systemd image") |
17 | def test_skeleton_availability(self): | 17 | def test_skeleton_availability(self): |
18 | (status, output) = self.target.run('ls /etc/init.d/skeleton') | 18 | (status, output) = self.target.run('ls /etc/init.d/skeleton') |
19 | self.assertEqual(status, 0, msg = "skeleton init script not found. Output:\n%s " % output) | 19 | self.assertEqual(status, 0, msg = "skeleton init script not found. Output:\n%s " % output) |
@@ -22,7 +22,7 @@ class SkeletonBasicTest(oeRuntimeTest): | |||
22 | 22 | ||
23 | @testcase(284) | 23 | @testcase(284) |
24 | @skipUnlessPassed('test_skeleton_availability') | 24 | @skipUnlessPassed('test_skeleton_availability') |
25 | @unittest.skipIf("systemd" == oeRuntimeTest.tc.d.getVar("VIRTUAL-RUNTIME_init_manager"), "Not appropiate for systemd image") | 25 | @unittest.skipIf("systemd" == oeRuntimeTest.tc.d.getVar("VIRTUAL-RUNTIME_init_manager", False), "Not appropiate for systemd image") |
26 | def test_skeleton_script(self): | 26 | def test_skeleton_script(self): |
27 | output1 = self.target.run("/etc/init.d/skeleton start")[1] | 27 | output1 = self.target.run("/etc/init.d/skeleton start")[1] |
28 | (status, output2) = self.target.run(oeRuntimeTest.pscmd + ' | grep [s]keleton-test') | 28 | (status, output2) = self.target.run(oeRuntimeTest.pscmd + ' | grep [s]keleton-test') |
diff --git a/meta/lib/oeqa/runtime/syslog.py b/meta/lib/oeqa/runtime/syslog.py index 7fa018e97f..5d0f548c99 100644 --- a/meta/lib/oeqa/runtime/syslog.py +++ b/meta/lib/oeqa/runtime/syslog.py | |||
@@ -29,7 +29,7 @@ class SyslogTestConfig(oeRuntimeTest): | |||
29 | 29 | ||
30 | @skipUnlessPassed("test_syslog_running") | 30 | @skipUnlessPassed("test_syslog_running") |
31 | def test_syslog_restart(self): | 31 | def test_syslog_restart(self): |
32 | if "systemd" != oeRuntimeTest.tc.d.getVar("VIRTUAL-RUNTIME_init_manager"): | 32 | if "systemd" != oeRuntimeTest.tc.d.getVar("VIRTUAL-RUNTIME_init_manager", False): |
33 | (status,output) = self.target.run('/etc/init.d/syslog restart') | 33 | (status,output) = self.target.run('/etc/init.d/syslog restart') |
34 | else: | 34 | else: |
35 | (status,output) = self.target.run('systemctl restart syslog.service') | 35 | (status,output) = self.target.run('systemctl restart syslog.service') |
@@ -37,7 +37,7 @@ class SyslogTestConfig(oeRuntimeTest): | |||
37 | @testcase(202) | 37 | @testcase(202) |
38 | @skipUnlessPassed("test_syslog_restart") | 38 | @skipUnlessPassed("test_syslog_restart") |
39 | @skipUnlessPassed("test_syslog_logger") | 39 | @skipUnlessPassed("test_syslog_logger") |
40 | @unittest.skipIf("systemd" == oeRuntimeTest.tc.d.getVar("VIRTUAL-RUNTIME_init_manager"), "Not appropiate for systemd image") | 40 | @unittest.skipIf("systemd" == oeRuntimeTest.tc.d.getVar("VIRTUAL-RUNTIME_init_manager", False), "Not appropiate for systemd image") |
41 | def test_syslog_startup_config(self): | 41 | def test_syslog_startup_config(self): |
42 | self.target.run('echo "LOGFILE=/var/log/test" >> /etc/syslog-startup.conf') | 42 | self.target.run('echo "LOGFILE=/var/log/test" >> /etc/syslog-startup.conf') |
43 | (status,output) = self.target.run('/etc/init.d/syslog restart') | 43 | (status,output) = self.target.run('/etc/init.d/syslog restart') |
diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py index 9a681a3674..60b09b2cb2 100644 --- a/meta/lib/oeqa/targetcontrol.py +++ b/meta/lib/oeqa/targetcontrol.py | |||
@@ -121,7 +121,7 @@ class QemuTarget(BaseTarget): | |||
121 | self.qemulog = os.path.join(self.testdir, "qemu_boot_log.%s" % self.datetime) | 121 | self.qemulog = os.path.join(self.testdir, "qemu_boot_log.%s" % self.datetime) |
122 | self.origrootfs = os.path.join(d.getVar("DEPLOY_DIR_IMAGE", True), d.getVar("IMAGE_LINK_NAME", True) + '.' + self.image_fstype) | 122 | self.origrootfs = os.path.join(d.getVar("DEPLOY_DIR_IMAGE", True), d.getVar("IMAGE_LINK_NAME", True) + '.' + self.image_fstype) |
123 | self.rootfs = os.path.join(self.testdir, d.getVar("IMAGE_LINK_NAME", True) + '-testimage.' + self.image_fstype) | 123 | self.rootfs = os.path.join(self.testdir, d.getVar("IMAGE_LINK_NAME", True) + '-testimage.' + self.image_fstype) |
124 | self.kernel = os.path.join(d.getVar("DEPLOY_DIR_IMAGE", True), d.getVar("KERNEL_IMAGETYPE") + '-' + d.getVar('MACHINE') + '.bin') | 124 | self.kernel = os.path.join(d.getVar("DEPLOY_DIR_IMAGE", True), d.getVar("KERNEL_IMAGETYPE", False) + '-' + d.getVar('MACHINE', False) + '.bin') |
125 | 125 | ||
126 | if d.getVar("DISTRO", True) == "poky-tiny": | 126 | if d.getVar("DISTRO", True) == "poky-tiny": |
127 | self.runner = QemuTinyRunner(machine=d.getVar("MACHINE", True), | 127 | self.runner = QemuTinyRunner(machine=d.getVar("MACHINE", True), |