diff mbox series

Fix INSTALL_TARGETS for nfs tests

Message ID 20211208152038.17355-1-mdoucha@suse.cz
State Accepted
Headers show
Series Fix INSTALL_TARGETS for nfs tests | expand

Commit Message

Martin Doucha Dec. 8, 2021, 3:20 p.m. UTC
Fixes: 7fb7aeb71 ("nfs: Add *.sh extension to shell tests")
Signed-off-by: Martin Doucha <mdoucha@suse.cz>
---
 testcases/network/nfs/nfs_stress/Makefile | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

Comments

Petr Vorel Dec. 8, 2021, 4:40 p.m. UTC | #1
Hi Martin,

> Fixes: 7fb7aeb71 ("nfs: Add *.sh extension to shell tests")
Thanks for fixing my error. Merged.

Maybe after adding new test we could just change the pattern to *.sh to not
having to update it.

Kind regards,
Petr
diff mbox series

Patch

diff --git a/testcases/network/nfs/nfs_stress/Makefile b/testcases/network/nfs/nfs_stress/Makefile
index 0b7408e29..8cd095867 100644
--- a/testcases/network/nfs/nfs_stress/Makefile
+++ b/testcases/network/nfs/nfs_stress/Makefile
@@ -10,12 +10,12 @@  nfs04_create_file: CPPFLAGS += -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
 nfs05_make_tree: LDLIBS += -lpthread
 
 INSTALL_TARGETS		:= nfs_lib.sh \
-			   nfs01 \
-			   nfs02 \
-			   nfs03 \
-			   nfs04 \
-			   nfs05 \
-			   nfs06 \
+			   nfs01.sh \
+			   nfs02.sh \
+			   nfs03.sh \
+			   nfs04.sh \
+			   nfs05.sh \
+			   nfs06.sh \
 			   nfs07.sh
 
 include $(top_srcdir)/include/mk/generic_leaf_target.mk