Remove other dependecies for test issue

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

View file

@ -19,13 +19,11 @@ data:
rpms:
- iputils
- lsof
- net-tools
- strace
api:
rpms:
- iputils
- lsof
- net-tools
- strace
components:
rpms:
@ -37,10 +35,6 @@ data:
rationale: A dependency of tangerine.
ref: master
buildorder: 10
net-tools:
rationale: A dependency of tangerine.
ref: master
buildorder: 10
strace:
rationale: A dependency of tangerine.
ref: master
@ -56,7 +50,3 @@ data:
libunwind-devel:
rationale: build dependency.
ref: master
# net-tools
bluez-libs-devel:
rationale: build dependency.
ref: master

View file

@ -5,12 +5,8 @@ modulemd-url: https://raw.githubusercontent.com/container-images/debugging-tools
packages:
rpms:
- iputils
- iproute
- lsof
- net-tools
- passwd
- strace
- valgrind
source: https://github.com/container-images/debugging-tools
module:
rpm:
@ -24,10 +20,5 @@ test:
- 'ls /usr/bin/tracepath'
# Tests for lsof
- 'ls /usr/bin/lsof'
# Tests for net-tools
- 'ls /usr/bin/netstat'
- 'ls /usr/sbin/arp'
- 'ls /usr/sbin/ifconfig'
- 'ls /usr/sbin/route'
# Tests for strace
- 'ls /usr/bin/strace'

View file

@ -38,11 +38,6 @@ class simpleTests(module_framework.AvocadoTest):
self.assertIn('tracepath exists!', self.runHost('ls /usr/bin/tracepath').stdout)
# Tests for lsof
self.assertIn('lsof exists!', self.runHost('ls /usr/bin/lsof').stdout)
# Tests for net-tools
self.assertIn('netstat exists!', self.runHost('ls /usr/bin/netstat').stdout)
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 strace
self.assertIn('strace exists!', self.runHost('ls /usr/bin/strace').stdout)