Remove other dependecies and passwd from debugging-tools

Signed-off-by: Petr "Stone" Hracek <phracek@redhat.com>
This commit is contained in:
Petr "Stone" Hracek 2017-04-05 11:03:26 +02:00
commit 2e6a58fb5d
3 changed files with 0 additions and 18 deletions

View file

@ -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'

View file

@ -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)