Changeset 4a4e29 in git


Ignore:
Timestamp:
Aug 31, 2011, 12:49:29 AM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
3449431cc9132aca0440d8ba73f57277d92384fe
Parents:
a40080cae8b3860098d611dfa15761e633e8fd1b
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-08-31 00:49:29+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:30+01:00
Message:
ADD: make check tests omalloc using the original test suites
File:
1 edited

Legend:

Unmodified
Added
Removed
  • omalloc/Makefile.am

    ra40080 r4a4e29  
     1AM_LDFLAGS = -L${top_builddir}/omalloc -L${top_builddir}/../omalloc
     2
    13lib_LIBRARIES=libomalloc.a libomalloc_g.a
    24
     
    4648omTables_CPPFLAGS = -DOM_GENERATE_INC
    4749
     50####################################################
     51## Test program
     52##
     53TESTS = omtTest-g omtTest-m omtTest-r
     54check_PROGRAMS = $(TESTS)
     55
     56OMTTESTSSOURCES = omtTestReal.c omtTestDebug.c omtTestKeep.c omtTestError.c omtTest.c
     57
     58omtTest_g: libomalloc_g.a
     59
     60omtTest_g_SOURCES = $(OMTTESTSSOURCES)
     61omtTest_g_CFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long
     62omtTest_g_LDADD = -lomalloc_g
     63
     64omtTest_m: libomalloc_g.a
     65
     66omtTest_m_CPPFLAGS = -DOM_TEST_MALLOC
     67omtTest_m_SOURCES  = $(OMTTESTSSOURCES)
     68omtTest_m_LDADD = -lomalloc_g
     69
     70omtTest_r: libomalloc.a
     71
     72omtTest_r_SOURCES = $(OMTTESTSSOURCES)
     73omtTest_r_CPPFLAGS = -DOM_NDEBUG
     74omtTest_r_CFLAGS = -O3
     75omtTest_r_LDADD = -lomalloc
     76
Note: See TracChangeset for help on using the changeset viewer.