/* * test-all.c: Try to build all the main testcases at once. * * A well-configured system will have all the prereqs installed, so we can speed * up auto-detection on such systems. */ /* * Quirk: Python and Perl headers cannot be in arbitrary places, so keep * these 3 testcases at the top: */ #define main main_test_libpython # include "test-libpython.c" #undef main #define main main_test_libpython_version # include "test-libpython-version.c" #undef main #define main main_test_libperl # include "test-libperl.c" #undef main #define main main_test_hello # include "test-hello.c" #undef main #define main main_test_libelf # include "test-libelf.c" #undef main #define main main_test_libelf_mmap # include "test-libelf-mmap.c" #undef main #define main main_test_glibc # include "test-glibc.c" #undef main #define main main_test_dwarf # include "test-dwarf.c" #undef main #define main main_test_dwarf_getlocations # include "test-dwarf_getlocations.c" #undef main #define main main_test_libelf_getphdrnum # include "test-libelf-getphdrnum.c" #undef main #define main main_test_libelf_gelf_getnote # include "test-libelf-gelf_getnote.c" #undef main #define main main_test_libelf_getshdrstrndx # include "test-libelf-getshdrstrndx.c" #undef main #define main main_test_libunwind # include "test-libunwind.c" #undef main #define main main_test_libaudit # include "test-libaudit.c" #undef main #define main main_test_libslang # include "test-libslang.c" #undef main #define main main_test_gtk2 # include "test-gtk2.c" #undef main #define main main_test_gtk2_infobar # include "test-gtk2-infobar.c" #undef main #define main main_test_libbfd # include "test-libbfd.c" #undef main #define main main_test_backtrace # include "test-backtrace.c" #undef main #define main main_test_libnuma # include "test-libnuma.c" #undef main #define main main_test_numa_num_possible_cpus # include "test-numa_num_possible_cpus.c" #undef main #define main main_test_timerfd # include "test-timerfd.c" #undef main #define main main_test_stackprotector_all # include "test-stackprotector-all.c" #undef main #define main main_test_libdw_dwarf_unwind # include "test-libdw-dwarf-unwind.c" #undef main #define main main_test_sync_compare_and_swap # include "test-sync-compare-and-swap.c" #undef main #define main main_test_zlib # include "test-zlib.c" #undef main #define main main_test_pthread_attr_setaffinity_np # include "test-pthread-attr-setaffinity-np.c" #undef main # if 0 /* * Disable libbabeltrace check for test-all, because the requested * library version is not released yet in most distributions. Will * reenable later. */ #define main main_test_libbabeltrace # include "test-libbabeltrace.c" #undef main #endif #define main main_test_lzma # include "test-lzma.c" #undef main #define main main_test_get_cpuid # include "test-get_cpuid.c" #undef main #define main main_test_bpf # include "test-bpf.c" #undef main #define main main_test_libcrypto # include "test-libcrypto.c" #undef main #define main main_test_sdt # include "test-sdt.c" #undef main int main(int argc, char *argv[]) { main_test_libpython(); main_test_libpython_version(); main_test_libperl(); main_test_hello(); main_test_libelf(); main_test_libelf_mmap(); main_test_glibc(); main_test_dwarf(); main_test_dwarf_getlocations(); main_test_libelf_getphdrnum(); main_test_libelf_gelf_getnote(); main_test_libelf_getshdrstrndx(); main_test_libunwind(); main_test_libaudit(); main_test_libslang(); main_test_gtk2(argc, argv); main_test_gtk2_infobar(argc, argv); main_test_libbfd(); main_test_backtrace(); main_test_libnuma(); main_test_numa_num_possible_cpus(); main_test_timerfd(); main_test_stackprotector_all(); main_test_libdw_dwarf_unwind(); main_test_sync_compare_and_swap(argc, argv); main_test_zlib(); main_test_pthread_attr_setaffinity_np(); main_test_lzma(); main_test_get_cpuid(); main_test_bpf(); main_test_libcrypto(); main_test_sdt(); return 0; } commit-info'> authorDavid S. Miller <davem@davemloft.net>2017-02-01 12:46:17 -0500 committerDavid S. Miller <davem@davemloft.net>2017-02-01 12:46:17 -0500 commit889711a03e0fba427fb85317900e93c74e3be02a (patch) tree05af2eda6502a95cf11935cce1e9b25a1340e7ca parentff1176f6164f3d151ee64c05d3f7b6662a81b982 (diff)parent7243a1af37a4dc9225004546d9d0756c529ad3ce (diff)
Merge tag 'wireless-drivers-next-for-davem-2017-02-01' of git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next
Kalle Valo says: ==================== wireless-drivers-next patches for 4.11 It's nice to see rt2x00 development has becoming active, for example adding support for a new chip version. Also wcn36xx has been converted to use the recently merged QCOM_SMD subsystem. Otherwise new features and fixes it lots of drivers. Major changes: iwlwifi * some more work in preparation for A000 family support * add support for radiotap timestamps * some work on our firmware debugging capabilities wcn36xx * convert to a proper QCOM_SMD driver (from the platform_driver interface) ath10k * VHT160 support * dump Copy Engine registers during firmware crash * search board file extension from SMBIOS wil6210 * add disable_ap_sme module parameter rt2x00 * support RT3352 with external PA * support for RT3352 with 20MHz crystal * add support for RT5350 WiSoC brcmfmac * add support for BCM43455 sdio device rtl8xxxu * add support for D-Link DWA-131 rev E1, TP-Link TL-WN822N v4 and others ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat