diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-01-27 21:41:09 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-01-27 21:41:09 +0100 |
commit | 9f4d0bd24e6b42555c02e137763f12c106572e63 (patch) | |
tree | bbcd4c6de8f205541ac3034ddc4cd60531a92a64 | |
parent | Merge tag 'platform-drivers-x86-v6.2-3' of git://git.kernel.org/pub/scm/linux... (diff) | |
parent | selftests: amd-pstate: Don't delete source files via Makefile (diff) | |
download | linux-9f4d0bd24e6b42555c02e137763f12c106572e63.tar.xz linux-9f4d0bd24e6b42555c02e137763f12c106572e63.zip |
Merge tag 'linux-kselftest-fixes-6.2-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest
Pull Kselftest fixes from Shuah Khan:
"A single fix to a amd-pstate test Makefile bug that deletes source
files during make clean run"
* tag 'linux-kselftest-fixes-6.2-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest:
selftests: amd-pstate: Don't delete source files via Makefile
-rw-r--r-- | tools/testing/selftests/amd-pstate/Makefile | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tools/testing/selftests/amd-pstate/Makefile b/tools/testing/selftests/amd-pstate/Makefile index 5f195ee756d6..5fd1424db37d 100644 --- a/tools/testing/selftests/amd-pstate/Makefile +++ b/tools/testing/selftests/amd-pstate/Makefile @@ -7,11 +7,6 @@ all: uname_M := $(shell uname -m 2>/dev/null || echo not) ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/) -ifeq (x86,$(ARCH)) -TEST_GEN_FILES += ../../../power/x86/amd_pstate_tracer/amd_pstate_trace.py -TEST_GEN_FILES += ../../../power/x86/intel_pstate_tracer/intel_pstate_tracer.py -endif - TEST_PROGS := run.sh TEST_FILES := basic.sh tbench.sh gitsource.sh |