Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

-5
-5
tools/testing/selftests/amd-pstate/Makefile
··· 7 7 uname_M := $(shell uname -m 2>/dev/null || echo not) 8 8 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/) 9 9 10 - ifeq (x86,$(ARCH)) 11 - TEST_GEN_FILES += ../../../power/x86/amd_pstate_tracer/amd_pstate_trace.py 12 - TEST_GEN_FILES += ../../../power/x86/intel_pstate_tracer/intel_pstate_tracer.py 13 - endif 14 - 15 10 TEST_PROGS := run.sh 16 11 TEST_FILES := basic.sh tbench.sh gitsource.sh 17 12