On 08/17/2017 09:55 AM, Daniel Díaz wrote: > These tests are only for x86, so don't try to build or run > them on other architectures. > > Signed-off-by: Daniel Díaz <daniel.diaz@xxxxxxxxxx> Applied to linux-kselftest fixes for 4.14-rc1 thanks, -- Shuah > --- > tools/testing/selftests/intel_pstate/Makefile | 2 ++ > tools/testing/selftests/intel_pstate/run.sh | 5 +++++ > 2 files changed, 7 insertions(+) > > diff --git a/tools/testing/selftests/intel_pstate/Makefile b/tools/testing/selftests/intel_pstate/Makefile > index 849a90f..a97e24e 100644 > --- a/tools/testing/selftests/intel_pstate/Makefile > +++ b/tools/testing/selftests/intel_pstate/Makefile > @@ -1,7 +1,9 @@ > CFLAGS := $(CFLAGS) -Wall -D_GNU_SOURCE > LDLIBS := $(LDLIBS) -lm > > +ifeq (,$(filter $(ARCH),x86)) > TEST_GEN_FILES := msr aperf > +endif > > TEST_PROGS := run.sh > > diff --git a/tools/testing/selftests/intel_pstate/run.sh b/tools/testing/selftests/intel_pstate/run.sh > index 7868c10..1b4b830 100755 > --- a/tools/testing/selftests/intel_pstate/run.sh > +++ b/tools/testing/selftests/intel_pstate/run.sh > @@ -29,6 +29,11 @@ > > EVALUATE_ONLY=0 > > +if ! uname -m | sed -e s/i.86/x86/ -e s/x86_64/x86/ | grep -q x86; then > + echo "$0 # Skipped: Test can only run on x86 architectures." > + exit 0 > +fi > + > max_cpus=$(($(nproc)-1)) > > # compile programs > -- To unsubscribe from this list: send the line "unsubscribe linux-kselftest" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html