diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-01-27 12:41:09 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-01-27 12:41:09 -0800 |
commit | 9f4d0bd24e6b42555c02e137763f12c106572e63 (patch) | |
tree | bbcd4c6de8f205541ac3034ddc4cd60531a92a64 | |
parent | 83abd4d4c4be8984ba5a3a813ccfedba79c7d6ad (diff) | |
parent | a49fb7218ed84a4c5e6c56b9fd933498b9730912 (diff) | |
download | linux-9f4d0bd24e6b42555c02e137763f12c106572e63.tar.bz2 |
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 |