Changeset 27ba59 in git


Ignore:
Timestamp:
Nov 23, 2011, 1:27:09 AM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
a250e13617385a559db923e0de676ba0f95b2b87
Parents:
8433482547cae25e8b3bbd39d7a1e85adcd3e5ae
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-11-23 01:27:09+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-11-23 01:56:24+01:00
Message:
static and dynamic tests for factory/

ADD: more test variants: static & dynamic in addition to debug & release (factory)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/Makefile.am

    r843348 r27ba59  
    323323## Test program
    324324##
    325 TESTS = test-g test-r
     325TESTS = test-s-g test-s-r test-d-g test-d-r
    326326check_PROGRAMS = $(TESTS)
    327327
    328328TESTSSOURCES = test.cc
    329329
    330 test_g_SOURCES = $(TESTSSOURCES)
    331 test_g_CFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long -fomit-frame-pointer --no-rtti #ftmpl_inst.o
    332 test_g_LDADD = -L${builddir} -lfactory_g $(GMP_LIBS) $(NTL_LIBS)
    333 
    334 test_r_SOURCES = $(TESTSSOURCES)
    335 test_r_CFLAGS = -O3 -fomit-frame-pointer --no-rtti #ftmpl_inst.o
    336 test_r_LDADD = -L${builddir} -lfactory $(GMP_LIBS) $(NTL_LIBS)
     330test_s_g_SOURCES = $(TESTSSOURCES)
     331test_s_g_CFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long -fomit-frame-pointer --no-rtti
     332#ftmpl_inst.o
     333test_s_g_LDADD = -L${builddir} -lfactory_g $(GMP_LIBS) $(NTL_LIBS)
     334
     335test_s_r_SOURCES = $(TESTSSOURCES)
     336test_s_r_CFLAGS = -O3 -fomit-frame-pointer --no-rtti
     337#ftmpl_inst.o
     338test_s_r_LDADD = -L${builddir} -lfactory $(GMP_LIBS) $(NTL_LIBS)
     339
     340test_s_r_LDFLAGS = -static
     341test_s_g_LDFLAGS = -static
     342
     343
     344
     345test_d_g_SOURCES = $(TESTSSOURCES)
     346test_d_g_CFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long -fomit-frame-pointer --no-rtti
     347#ftmpl_inst.o
     348test_d_g_LDADD = -L${builddir} -lfactory_g $(GMP_LIBS) $(NTL_LIBS)
     349
     350test_d_r_SOURCES = $(TESTSSOURCES)
     351test_d_r_CFLAGS = -O3 -fomit-frame-pointer --no-rtti
     352#ftmpl_inst.o
     353test_d_r_LDADD = -L${builddir} -lfactory $(GMP_LIBS) $(NTL_LIBS)
Note: See TracChangeset for help on using the changeset viewer.