Changeset 843348 in git for omalloc


Ignore:
Timestamp:
Nov 21, 2011, 2:33:23 AM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
27ba59ded4b41a0e73f98a87edfe7fa8a95c2046
Parents:
e5541620720cbe23c473fe2acde51369f1171725
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-11-21 02:33:23+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-11-23 01:55:21+01:00
Message:
static and dynamic tests for omalloc/

ADD: more test variants: static & dynamic in addition to -g/-r/-m
File:
1 edited

Legend:

Unmodified
Added
Removed
  • omalloc/Makefile.am

    re554162 r843348  
    5959
    6060
    61 TESTS = omtTest-g omtTest-m omtTest-r
     61TESTS = omtTest-s-g omtTest-s-m omtTest-s-r omtTest-d-g omtTest-d-m omtTest-d-r
    6262check_PROGRAMS = $(TESTS)
    6363
    6464OMTTESTSSOURCES = omtTestReal.c omtTestDebug.c omtTestKeep.c omtTestError.c omtTest.c
    6565
    66 # omtTest_g: libomalloc_g.la
     66omtTest_s_g_SOURCES = $(OMTTESTSSOURCES)
     67omtTest_s_g_CPPFLAGS = -DHAVE_CONFIG_H
     68omtTest_s_g_CFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long
     69omtTest_s_g_LDADD = libomalloc_g.la
     70omtTest_s_g_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc -static
    6771
    68 omtTest_g_SOURCES = $(OMTTESTSSOURCES)
    69 omtTest_g_CPPFLAGS = -DHAVE_CONFIG_H
    70 omtTest_g_CFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long
    71 omtTest_g_LDADD = -lomalloc_g
    72 omtTest_g_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc
     72omtTest_s_m_CPPFLAGS = -DOM_TEST_MALLOC  -DHAVE_CONFIG_H
     73omtTest_s_m_SOURCES  = $(OMTTESTSSOURCES)
     74omtTest_s_m_LDADD = libomalloc_g.la
     75omtTest_s_m_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc -static
     76
     77omtTest_s_r_SOURCES = $(OMTTESTSSOURCES)
     78omtTest_s_r_CPPFLAGS = -DOM_NDEBUG
     79omtTest_s_r_CFLAGS = -O3
     80omtTest_s_r_LDADD = libomalloc.la
     81omtTest_s_r_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc -static
    7382
    7483
    75 # omtTest_m: libomalloc_g.la
    7684
    77 omtTest_m_CPPFLAGS = -DOM_TEST_MALLOC  -DHAVE_CONFIG_H
    78 omtTest_m_SOURCES  = $(OMTTESTSSOURCES)
    79 omtTest_m_LDADD = -lomalloc_g
    80 omtTest_m_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc
     85omtTest_d_g_SOURCES = $(OMTTESTSSOURCES)
     86omtTest_d_g_CPPFLAGS = -DHAVE_CONFIG_H
     87omtTest_d_g_CFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long
     88omtTest_d_g_LDADD = libomalloc_g.la
     89omtTest_d_g_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc
    8190
    82 # omtTest_r: libomalloc.la
     91omtTest_d_m_CPPFLAGS = -DOM_TEST_MALLOC  -DHAVE_CONFIG_H
     92omtTest_d_m_SOURCES  = $(OMTTESTSSOURCES)
     93omtTest_d_m_LDADD = libomalloc_g.la
     94omtTest_d_m_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc
    8395
    84 omtTest_r_SOURCES = $(OMTTESTSSOURCES)
    85 omtTest_r_CPPFLAGS = -DOM_NDEBUG
    86 omtTest_r_CFLAGS = -O3
    87 omtTest_r_LDADD = -lomalloc
    88 omtTest_r_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc
    89 
     96omtTest_d_r_SOURCES = $(OMTTESTSSOURCES)
     97omtTest_d_r_CPPFLAGS = -DOM_NDEBUG
     98omtTest_d_r_CFLAGS = -O3
     99omtTest_d_r_LDADD = libomalloc.la
     100omtTest_d_r_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc
Note: See TracChangeset for help on using the changeset viewer.