diff options
author | Ross Burton <ross.burton@intel.com> | 2016-08-23 15:14:04 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-25 22:59:08 +0100 |
commit | 59d10be745a1f7d31c68e4d5da9e1c3461b7d390 (patch) | |
tree | 3ee9cb307e306e8d7fbeafaa2d00f364222391f9 /meta | |
parent | 7a0f93956f43a5d000e845eeb429e9e37d48ae2e (diff) | |
download | openembedded-core-59d10be745a1f7d31c68e4d5da9e1c3461b7d390.tar.gz openembedded-core-59d10be745a1f7d31c68e4d5da9e1c3461b7d390.tar.bz2 openembedded-core-59d10be745a1f7d31c68e4d5da9e1c3461b7d390.zip |
oeqa/runtime/rpm: use su instead of sudo
This test works fine with su, which is more likely to be installed in images
than sudo.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/runtime/rpm.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/meta/lib/oeqa/runtime/rpm.py b/meta/lib/oeqa/runtime/rpm.py index 624c515aad..4d03ecbf4a 100644 --- a/meta/lib/oeqa/runtime/rpm.py +++ b/meta/lib/oeqa/runtime/rpm.py @@ -53,9 +53,9 @@ class RpmInstallRemoveTest(oeRuntimeTest): def test_rpm_query_nonroot(self): (status, output) = self.target.run('useradd test1') self.assertTrue(status == 0, msg="Failed to create new user: " + output) - (status, output) = self.target.run('sudo -u test1 id') + (status, output) = self.target.run('su -c id test1') self.assertTrue('(test1)' in output, msg="Failed to execute as new user") - (status, output) = self.target.run('sudo -u test1 rpm -qa') + (status, output) = self.target.run('su -c "rpm -qa" test1 ') self.assertEqual(status, 0, msg="status: %s. Cannot run rpm -qa: %s" % (status, output)) @testcase(195) @@ -98,4 +98,3 @@ class RpmInstallRemoveTest(oeRuntimeTest): @classmethod def tearDownClass(self): oeRuntimeTest.tc.target.run('rm -f /tmp/rpm-doc.rpm') - |