Skip to content

Commit 95bc3ca

Browse files
committed
tmt: fix package dependencies for the /run/nfs test
The test needs to depend on the basic set of packages, too, otherwise it can't be run on its own. Fix this by having both the main and nfs test inherit the dependencies from a common node. Signed-off-by: Ondrej Mosnacek <[email protected]>
1 parent 738cb70 commit 95bc3ca

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

tmt/tests.fmf

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,7 @@
7575
sestatus
7676
lscpu
7777
/run:
78-
summary: Run the testsuite
7978
order: 3
80-
duration: 20m
8179
require:
8280
- make
8381
- perl-Test
@@ -102,14 +100,16 @@
102100
- jfsutils
103101
- dosfstools
104102
- rdma-core-devel
105-
test: make -C .. test
106-
/run-nfs:
107-
summary: Run the NFS tests
108-
order: 3
109-
tag: [nfs]
110-
duration: 25m
111-
require: nfs-utils
112-
test: env -C .. bash -x ./tools/nfs.sh
103+
/main:
104+
summary: Run the testsuite
105+
duration: 20m
106+
test: make -C .. test
107+
/nfs:
108+
summary: Run the NFS tests
109+
tag: [nfs]
110+
duration: 25m
111+
require+: [nfs-utils]
112+
test: env -C .. bash -x ./tools/nfs.sh
113113
/avc-check:
114114
summary: Check unwanted denials
115115
order: 4

0 commit comments

Comments
 (0)