From ed3ffc1a196b69c36a5a1c17573e1c0d6e695c22 Mon Sep 17 00:00:00 2001 From: "Petr \"Stone\" Hracek" Date: Wed, 5 Apr 2017 11:08:28 +0200 Subject: [PATCH] Remove other dependecies for test issue Signed-off-by: Petr "Stone" Hracek --- debugging-tools.yaml | 10 ---------- tests/config.yaml | 9 --------- tests/simpleTest.py | 5 ----- 3 files changed, 24 deletions(-) diff --git a/debugging-tools.yaml b/debugging-tools.yaml index cc4b265..462c6a6 100644 --- a/debugging-tools.yaml +++ b/debugging-tools.yaml @@ -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 diff --git a/tests/config.yaml b/tests/config.yaml index b5fbc5c..8c77266 100644 --- a/tests/config.yaml +++ b/tests/config.yaml @@ -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' diff --git a/tests/simpleTest.py b/tests/simpleTest.py index 0a727b0..a86fdb1 100644 --- a/tests/simpleTest.py +++ b/tests/simpleTest.py @@ -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)