Hi, This series of patches is an odd mix. It addresses a lot of build issues which may or may not have tickets. There are a handful of libdl tickets which either impact an entire architecture or a subset of BSPs. All have tickets. If it was an architecture issue, libdl is now disabled. It is was a subset of BSPs, then a I added a special testdata file and included it.
I fixed some odd issues along the way like the Pi not working with libdl. Some BSPs had tests which did not fit into memory and the builds had not gotten far enough in long enough to spot that. One of the patch adds fsscandir01 as needed to about 20 BSPs which wouldn't build that far when I added the test. I have started a build of all BSPs with networking and all tests enabled. There may still be a nit but I wanted a basic review in case I messed up something obvious like the Trac annotation. I really don't expect much since this should mostly be build related to work around outstanding issues or disable tests. Once committed, the libdl tickets which are updated can have their milestone moved past 4.11. This should eliminate 6-8 tickets between us and 4.11 --joel Joel Sherrill (12): lpc1768_mbed_ahb_ram.tcfg: Remove as it is a junk file lpc1768_mbed_ahb_ram-testsuite.tcfg: Add ftp01 raspberrypi: Do not include default IRQ handler and BSP specific one Temporarily disable libdl for bfin Temporarily disable libdl for v850 Temporarily disable libdl for lm32 dltests-broken-on-this-bsp.tcfg: New file used for dl* tests work around Temporarily disable libdl tests on some MIPS BSPSs Always disable networking for h8300 Temporarily ignore dl* tests on some PowerPC BSPs Add jffs2_fsscandir01 to more BSPs testsuite configuration Temporarily disable libdl for h8300 c/src/aclocal/check-networking.m4 | 3 ++- .../arm/lm3s69xx/make/custom/lm3s3749-testsuite.tcfg | 2 ++ .../arm/lm3s69xx/make/custom/lm3s6965-testsuite.tcfg | 1 + .../arm/lm3s69xx/make/custom/lm4f120-testsuite.tcfg | 1 + .../arm/lpc176x/make/custom/lpc1768_mbed-testsuite.tcfg | 1 + .../make/custom/lpc1768_mbed_ahb_ram-testsuite.tcfg | 2 ++ .../arm/lpc176x/make/custom/lpc1768_mbed_ahb_ram.tcfg | 7 ------- .../make/custom/lpc1768_mbed_ahb_ram_eth-testsuite.tcfg | 1 + .../arm/lpc24xx/make/custom/lpc2362-testsuite.tcfg | 1 + .../lpc24xx/make/custom/lpc23xx_tli800-testsuite.tcfg | 2 ++ .../make/custom/lpc32xx_mzx_stage_1-testsuite.tcfg | 1 + c/src/lib/libbsp/arm/raspberrypi/Makefile.am | 1 - .../arm/stm32f4/make/custom/stm32f105rc-testsuite.tcfg | 1 + .../arm/stm32f4/make/custom/stm32f4-testsuite.tcfg | 1 + .../make/custom/tms570ls3137_hdk_intram-testsuite.tcfg | 1 + .../m32c/m32cbsp/make/custom/m32csim-testsuite.tcfg | 2 ++ .../m68k/mcf52235/make/custom/mcf52235-testsuite.tcfg | 1 + .../m68k/mcf5225x/make/custom/mcf5225x-testsuite.tcfg | 1 + .../mips/hurricane/make/custom/hurricane-testsuite.tcfg | 5 +++++ .../mips/rbtx4925/make/custom/rbtx4925-testsuite.tcfg | 5 +++++ .../mips/rbtx4938/make/custom/rbtx4938-testsuite.tcfg | 5 +++++ .../powerpc/mpc55xxevb/make/custom/gwlcfm-testsuite.tcfg | 2 ++ .../mpc55xxevb/make/custom/mpc5566evb-testsuite.tcfg | 2 ++ .../mpc55xxevb/make/custom/mpc5566evb_spe-testsuite.tcfg | 2 ++ .../mpc55xxevb/make/custom/mpc5643l_dpu-testsuite.tcfg | 2 ++ .../mpc55xxevb/make/custom/mpc5643l_evb-testsuite.tcfg | 2 ++ .../mpc55xxevb/make/custom/mpc5668g-testsuite.tcfg | 5 +++++ .../make/custom/mpc5674f_ecu508_app-testsuite.tcfg | 5 +++++ .../make/custom/mpc5674f_ecu508_boot-testsuite.tcfg | 1 + .../mpc55xxevb/make/custom/mpc5674f_rsm6-testsuite.tcfg | 1 + .../mpc55xxevb/make/custom/mpc5674fevb-testsuite.tcfg | 5 +++++ .../make/custom/mpc5674fevb_spe-testsuite.tcfg | 5 +++++ .../make/custom/phycore_mpc5554-testsuite.tcfg | 2 ++ .../qoriq/make/custom/qoriq_core_0-testsuite.tcfg | 5 +++++ .../qoriq/make/custom/qoriq_core_1-testsuite.tcfg | 5 +++++ .../qoriq/make/custom/qoriq_p1020rdb-testsuite.tcfg | 5 +++++ .../qoriq/make/custom/qoriq_t2080rdb-testsuite.tcfg | 5 +++++ .../qoriq/make/custom/qoriq_t4240rdb-testsuite.tcfg | 5 +++++ cpukit/aclocal/check-networking.m4 | 4 ++++ cpukit/configure.ac | 16 ++++++++++++++-- testsuites/libtests/configure.ac | 16 ++++++++++++++-- testsuites/testdata/dltests-broken-on-this-bsp.tcfg | 8 ++++++++ 42 files changed, 135 insertions(+), 13 deletions(-) delete mode 100644 c/src/lib/libbsp/arm/lpc176x/make/custom/lpc1768_mbed_ahb_ram.tcfg create mode 100644 c/src/lib/libbsp/mips/hurricane/make/custom/hurricane-testsuite.tcfg create mode 100644 c/src/lib/libbsp/mips/rbtx4925/make/custom/rbtx4925-testsuite.tcfg create mode 100644 c/src/lib/libbsp/mips/rbtx4938/make/custom/rbtx4938-testsuite.tcfg create mode 100644 c/src/lib/libbsp/powerpc/mpc55xxevb/make/custom/mpc5668g-testsuite.tcfg create mode 100644 c/src/lib/libbsp/powerpc/mpc55xxevb/make/custom/mpc5674f_ecu508_app-testsuite.tcfg create mode 100644 c/src/lib/libbsp/powerpc/mpc55xxevb/make/custom/mpc5674fevb-testsuite.tcfg create mode 100644 c/src/lib/libbsp/powerpc/mpc55xxevb/make/custom/mpc5674fevb_spe-testsuite.tcfg create mode 100644 c/src/lib/libbsp/powerpc/qoriq/make/custom/qoriq_core_0-testsuite.tcfg create mode 100644 c/src/lib/libbsp/powerpc/qoriq/make/custom/qoriq_core_1-testsuite.tcfg create mode 100644 c/src/lib/libbsp/powerpc/qoriq/make/custom/qoriq_p1020rdb-testsuite.tcfg create mode 100644 c/src/lib/libbsp/powerpc/qoriq/make/custom/qoriq_t2080rdb-testsuite.tcfg create mode 100644 c/src/lib/libbsp/powerpc/qoriq/make/custom/qoriq_t4240rdb-testsuite.tcfg create mode 100644 testsuites/testdata/dltests-broken-on-this-bsp.tcfg -- 1.9.3 _______________________________________________ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel