diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2020-05-29 11:38:41 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2020-05-29 16:51:38 -0300 |
commit | 69fbadbe987a7f9abbc8ac457a1057ebb98e21db (patch) | |
tree | 7c3b26b44ee03b7258e0432a628a74b1e2821747 /tools/perf | |
parent | 5bc7aac3e7ca08008b7681f0794deee275d356ac (diff) | |
download | linux-69fbadbe987a7f9abbc8ac457a1057ebb98e21db.tar.bz2 |
perf build: Add NO_LIBCRYPTO=1 to the default set of build tests
We forgot to add it, so one would have to explicitely ask for it to be
run, fix that by adding it to the set of tests that are performed by
default when one does:
$ make -C tools/perf build-test
It was being exercised only in the make_minimal test, this patch makes
it be tested in isolation, i.e. disabling only this feature.
Fixes: 8ee4646038e4 ("perf build: Add libcrypto feature detection")
Cc: Stephane Eranian <eranian@google.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/tests/make | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/tests/make b/tools/perf/tests/make index a4ffa3c7fcb6..60b5d8015e7d 100644 --- a/tools/perf/tests/make +++ b/tools/perf/tests/make @@ -147,6 +147,7 @@ run += make_no_libbionic run += make_no_auxtrace run += make_no_libbpf run += make_no_libbpf_DEBUG +run += make_no_libcrypto run += make_no_syscall_tbl run += make_with_babeltrace run += make_with_clangllvm |