Skip to content

Commit

Permalink
Merge tag 'linux-kselftest-5.6-rc4' of git://git.kernel.org/pub/scm/l…
Browse files Browse the repository at this point in the history
…inux/kernel/git/shuah/linux-kselftest

Pull Kselftest fixes from Shuah Khan:

 - fixes to TIMEOUT failures and out-of-tree compilation compilation
   errors from Michael Ellerman.

 - declutter git status fix from Christophe Leroy

* tag 'linux-kselftest-5.6-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest:
  selftests/rseq: Fix out-of-tree compilation
  selftests: Install settings files to fix TIMEOUT failures
  selftest/lkdtm: Don't pollute 'git status'
  • Loading branch information
torvalds committed Feb 26, 2020
2 parents cfe2ce4 + ef89d05 commit 2fcc741
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ modules.order
/include/ksym/
/arch/*/include/generated/

# Generated lkdtm tests
/tools/testing/selftests/lkdtm/*.sh
!/tools/testing/selftests/lkdtm/run.sh

# stgit generated dirs
patches-*

Expand Down
2 changes: 1 addition & 1 deletion tools/testing/selftests/ftrace/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
all:

TEST_PROGS := ftracetest
TEST_FILES := test.d
TEST_FILES := test.d settings
EXTRA_CLEAN := $(OUTPUT)/logs/*

include ../lib.mk
2 changes: 2 additions & 0 deletions tools/testing/selftests/livepatch/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ TEST_PROGS := \
test-state.sh \
test-ftrace.sh

TEST_FILES := settings

include ../lib.mk
2 changes: 2 additions & 0 deletions tools/testing/selftests/net/mptcp/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ TEST_PROGS := mptcp_connect.sh

TEST_GEN_FILES = mptcp_connect

TEST_FILES := settings

EXTRA_CLEAN := *.pcap

include ../../lib.mk
4 changes: 3 additions & 1 deletion tools/testing/selftests/rseq/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ifneq ($(shell $(CC) --version 2>&1 | head -n 1 | grep clang),)
CLANG_FLAGS += -no-integrated-as
endif

CFLAGS += -O2 -Wall -g -I./ -I../../../../usr/include/ -L./ -Wl,-rpath=./ \
CFLAGS += -O2 -Wall -g -I./ -I../../../../usr/include/ -L$(OUTPUT) -Wl,-rpath=./ \
$(CLANG_FLAGS)
LDLIBS += -lpthread

Expand All @@ -19,6 +19,8 @@ TEST_GEN_PROGS_EXTENDED = librseq.so

TEST_PROGS = run_param_test.sh

TEST_FILES := settings

include ../lib.mk

$(OUTPUT)/librseq.so: rseq.c rseq.h rseq-*.h
Expand Down
2 changes: 2 additions & 0 deletions tools/testing/selftests/rtc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ TEST_GEN_PROGS = rtctest

TEST_GEN_PROGS_EXTENDED = setdate

TEST_FILES := settings

include ../lib.mk

0 comments on commit 2fcc741

Please sign in to comment.