diff --git a/debugging-tools.yaml b/debugging-tools.yaml index 9693dbe..cc4b265 100644 --- a/debugging-tools.yaml +++ b/debugging-tools.yaml @@ -18,21 +18,15 @@ data: default: rpms: - iputils - - iproute - lsof - net-tools - - passwd - strace - - valgrind api: rpms: - iputils - - iproute - lsof - net-tools - - passwd - strace - - valgrind components: rpms: iputils: @@ -47,18 +41,10 @@ data: rationale: A dependency of tangerine. ref: master buildorder: 10 - passwd: - rationale: A dependency of tangerine. - ref: master - buildorder: 10 strace: rationale: A dependency of tangerine. ref: master buildorder: 10 - # passwd - libuser-devel: - rationale: build dependency. - ref: master # iputils perl-SGMLSpm: rationale: build dependency. diff --git a/tests/config.yaml b/tests/config.yaml index c4305dc..b5fbc5c 100644 --- a/tests/config.yaml +++ b/tests/config.yaml @@ -29,7 +29,5 @@ test: - 'ls /usr/sbin/arp' - 'ls /usr/sbin/ifconfig' - 'ls /usr/sbin/route' - # Tests for passwd - - 'ls /usr/bin/passwd' # Tests for strace - 'ls /usr/bin/strace' diff --git a/tests/simpleTest.py b/tests/simpleTest.py index 25eff84..0a727b0 100644 --- a/tests/simpleTest.py +++ b/tests/simpleTest.py @@ -43,8 +43,6 @@ class simpleTests(module_framework.AvocadoTest): self.assertIn('arp exists!', self.runHost('ls /usr/sbin/arp').stdout) self.assertIn('ifconfig exists!', self.runHost('ls /usr/sbin/ifconfig').stdout) self.assertIn('route exists!', self.runHost('ls /usr/sbin/route').stdout) - # Tests for passwd - self.assertIn('passwd exists!', self.runHost('ls /usr/bin/passwd').stdout) # Tests for strace self.assertIn('strace exists!', self.runHost('ls /usr/bin/strace').stdout)