diff options
author | Thomas Meyer <thomas@m3y3r.de> | 2017-09-08 14:01:18 +0200 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2017-09-18 10:54:53 -0600 |
commit | 6f0003363a13be699ba945cfa4074193e04fbea5 (patch) | |
tree | bb80ffa83e9df77503f82610b7d03f6bed9735ab /tools | |
parent | 67b2e30eb7b346db60afe91b0927738fb604d0a4 (diff) | |
download | op-kernel-dev-6f0003363a13be699ba945cfa4074193e04fbea5.zip op-kernel-dev-6f0003363a13be699ba945cfa4074193e04fbea5.tar.gz |
selftests/intel_pstate: No need to compile test progs in the run script
Both test programs are being compiled by make, so no need to compile both
programs in the runner script.
This resolves an error when installing all selftests via make install
and run them in a different environemnt.
Running tests in intel_pstate
========================================
./run.sh: line 35: gcc: command not found
Problem compiling aperf.c.
Signed-off-by: Thomas Meyer <thomas@m3y3r.de>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/testing/selftests/intel_pstate/run.sh | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tools/testing/selftests/intel_pstate/run.sh b/tools/testing/selftests/intel_pstate/run.sh index 1b4b830..d3ab48f 100755 --- a/tools/testing/selftests/intel_pstate/run.sh +++ b/tools/testing/selftests/intel_pstate/run.sh @@ -36,12 +36,6 @@ fi max_cpus=$(($(nproc)-1)) -# compile programs -gcc aperf.c -Wall -D_GNU_SOURCE -o aperf -lm -[ $? -ne 0 ] && echo "Problem compiling aperf.c." && exit 1 -gcc -o msr msr.c -lm -[ $? -ne 0 ] && echo "Problem compiling msr.c." && exit 1 - function run_test () { file_ext=$1 |