lkml.org 
[lkml]   [2017]   [Sep]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH] selftests: futex: Makefile: fix for lops in targets to run silently
    Date
    Fix for loops in targets to run silently to avoid cluttering the test
    results.

    Suppresses the following from targets:

    for DIR in functional; do \
    BUILD_TARGET=./tools/testing/selftests/futex/$DIR; \
    mkdir $BUILD_TARGET -p; \
    make OUTPUT=$BUILD_TARGET -C $DIR all;\
    done

    ./tools/testing/selftests/futex/run.sh

    Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
    ---
    tools/testing/selftests/futex/Makefile | 6 +++---
    1 file changed, 3 insertions(+), 3 deletions(-)

    diff --git a/tools/testing/selftests/futex/Makefile b/tools/testing/selftests/futex/Makefile
    index 9358cb210fd5..f0c0369ccb79 100644
    --- a/tools/testing/selftests/futex/Makefile
    +++ b/tools/testing/selftests/futex/Makefile
    @@ -7,7 +7,7 @@ TEST_PROGS := run.sh
    include ../lib.mk

    all:
    - for DIR in $(SUBDIRS); do \
    + @for DIR in $(SUBDIRS); do \
    BUILD_TARGET=$(OUTPUT)/$$DIR; \
    mkdir $$BUILD_TARGET -p; \
    make OUTPUT=$$BUILD_TARGET -C $$DIR $@;\
    @@ -17,7 +17,7 @@ all:
    done

    override define RUN_TESTS
    - cd $(OUTPUT); ./run.sh
    + @cd $(OUTPUT); ./run.sh
    endef

    override define INSTALL_RULE
    @@ -36,7 +36,7 @@ override define EMIT_TESTS
    endef

    override define CLEAN
    - for DIR in $(SUBDIRS); do \
    + @for DIR in $(SUBDIRS); do \
    BUILD_TARGET=$(OUTPUT)/$$DIR; \
    mkdir $$BUILD_TARGET -p; \
    make OUTPUT=$$BUILD_TARGET -C $$DIR $@;\
    --
    2.11.0
    \
     
     \ /
      Last update: 2017-09-19 03:00    [W:4.475 / U:0.068 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site