diff mbox series

[v2,2/3] selftests: fix condition in run_tests

Message ID 20200515120026.113278-3-yauheni.kaliuta@redhat.com
State Not Applicable
Delegated to: David Miller
Headers show
Series selftests: lib.mk improvements | expand

Commit Message

Yauheni Kaliuta May 15, 2020, noon UTC
The check if there are any files to install in case of no files
compares "X  " with "X" so never false.

Remove extra spaces. It may make sense to use make's $(if) function
here.

Signed-off-by: Yauheni Kaliuta <yauheni.kaliuta@redhat.com>
---
 tools/testing/selftests/lib.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Jiri Benc May 15, 2020, 12:40 p.m. UTC | #1
On Fri, 15 May 2020 15:00:25 +0300, Yauheni Kaliuta wrote:
> The check if there are any files to install in case of no files
> compares "X  " with "X" so never false.
> 
> Remove extra spaces. It may make sense to use make's $(if) function
> here.
> 
> Signed-off-by: Yauheni Kaliuta <yauheni.kaliuta@redhat.com>

Acked-by: Jiri Benc <jbenc@redhat.com>
diff mbox series

Patch

diff --git a/tools/testing/selftests/lib.mk b/tools/testing/selftests/lib.mk
index 5b82433d88e3..7a17ea815736 100644
--- a/tools/testing/selftests/lib.mk
+++ b/tools/testing/selftests/lib.mk
@@ -70,7 +70,7 @@  endef
 
 run_tests: all
 ifdef building_out_of_srctree
-	@if [ "X$(TEST_PROGS) $(TEST_PROGS_EXTENDED) $(TEST_FILES)" != "X" ]; then \
+	@if [ "X$(TEST_PROGS)$(TEST_PROGS_EXTENDED)$(TEST_FILES)" != "X" ]; then \
 		rsync -aq $(TEST_PROGS) $(TEST_PROGS_EXTENDED) $(TEST_FILES) $(OUTPUT); \
 	fi
 	@if [ "X$(TEST_PROGS)" != "X" ]; then \