aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/build/feature/test-all.c
diff options
context:
space:
mode:
authorJiri Olsa <jolsa@kernel.org>2015-03-04 11:35:47 +0100
committerArnaldo Carvalho de Melo <acme@redhat.com>2015-03-21 14:53:39 -0300
commit6c6f0f6164fbf7a1667378496ee36ae48c18a9d6 (patch)
treef7cbfd5ceaa05b16fbfd3e0db2392b447e62c579 /tools/build/feature/test-all.c
parenttools lib traceevent: Add destructor for format_field (diff)
downloadwireguard-linux-6c6f0f6164fbf7a1667378496ee36ae48c18a9d6.tar.xz
wireguard-linux-6c6f0f6164fbf7a1667378496ee36ae48c18a9d6.zip
tools build: Add feature check for lzma library
Will be used to decompress 'xz' objects. The check detects the liblzma.so devel library normally delivered by xz package. Signed-off-by: Jiri Olsa <jolsa@kernel.org> Acked-by: Namhyung Kim <namhyung@kernel.org> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Stephane Eranian <eranian@google.com>
Diffstat (limited to 'tools/build/feature/test-all.c')
-rw-r--r--tools/build/feature/test-all.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/build/feature/test-all.c b/tools/build/feature/test-all.c
index a61c20456705..84689a67814a 100644
--- a/tools/build/feature/test-all.c
+++ b/tools/build/feature/test-all.c
@@ -113,6 +113,10 @@
#undef main
#endif
+#define main main_test_lzma
+# include "test-lzma.c"
+#undef main
+
int main(int argc, char *argv[])
{
main_test_libpython();
@@ -138,6 +142,7 @@ int main(int argc, char *argv[])
main_test_sync_compare_and_swap(argc, argv);
main_test_zlib();
main_test_pthread_attr_setaffinity_np();
+ main_test_lzma();
return 0;
}