Changeset 6fe01e4b in rtems


Ignore:
Timestamp:
01/14/19 08:08:18 (5 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
5, master
Children:
cfcc2cbf
Parents:
abec398
git-author:
Sebastian Huber <sebastian.huber@…> (01/14/19 08:08:18)
git-committer:
Sebastian Huber <sebastian.huber@…> (03/26/19 10:29:58)
Message:

build: Move test support to librtemstest.a

One reason to move the test support into a dedicated library are the
standard output wrap_*() functions. They may conflict with
application level wrappers.

Update #3199.

Files:
3 edited
5 moved

Legend:

Unmodified
Added
Removed
  • cpukit/Makefile.am

    rabec398 r6fe01e4b  
    323323librtemscpu_a_SOURCES += libmisc/stringto/stringtounsignedlong.c
    324324librtemscpu_a_SOURCES += libmisc/stringto/stringtounsignedlonglong.c
    325 librtemscpu_a_SOURCES += libmisc/testsupport/testbeginend.c
    326 librtemscpu_a_SOURCES += libmisc/testsupport/testbusy.c
    327 librtemscpu_a_SOURCES += libmisc/testsupport/testextension.c
    328 librtemscpu_a_SOURCES += libmisc/testsupport/testparallel.c
    329 librtemscpu_a_SOURCES += libmisc/testsupport/testwrappers.c
    330325librtemscpu_a_SOURCES += libmisc/untar/untar.c
    331326librtemscpu_a_SOURCES += libmisc/untar/untar_tgz.c
     
    18351830librtemsdefaultconfig_a_SOURCES += libmisc/dummy/default-configuration.c
    18361831
     1832project_lib_LIBRARIES += librtemstest.a
     1833
     1834librtemstest_a_SOURCES =
     1835librtemstest_a_SOURCES += libtest/testbeginend.c
     1836librtemstest_a_SOURCES += libtest/testbusy.c
     1837librtemstest_a_SOURCES += libtest/testextension.c
     1838librtemstest_a_SOURCES += libtest/testparallel.c
     1839librtemstest_a_SOURCES += libtest/testwrappers.c
     1840
    18371841project_lib_LIBRARIES += libftpd.a
    18381842
  • testsuites/ada/ada.am

    rabec398 r6fe01e4b  
    1010-margs $(AM_ADAFLAGS) $(ADAFLAGS) \
    1111-cargs $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) \
    12 -largs $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) init.o
     12-largs $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -lrtemstest init.o
    1313
    1414CLEANFILES += *.ali *.o b~*.adb b~*.ads
  • testsuites/automake/compile.am

    rabec398 r6fe01e4b  
    2525LDADD += $(RTEMS_ROOT)lib/libbsp/@RTEMS_CPU@/@RTEMS_BSP_FAMILY@/librtemsbsp.a
    2626LDADD += $(RTEMS_ROOT)cpukit/librtemscpu.a
     27LDADD += $(RTEMS_ROOT)cpukit/librtemstest.a
    2728
    2829CLEANFILES = *.num *.nxe *.elf *.srec* *.bin *.bt *.ralf
Note: See TracChangeset for help on using the changeset viewer.