Changeset 17228e in git


Ignore:
Timestamp:
Aug 28, 2012, 4:05:32 PM (12 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '6e5adcba05493683b94648c659a729c189812c77')
Children:
416d764e7326c901a0dba0121b59e2e7901d1090
Parents:
05051f9850bc9dcf9b7747cbc3bf2bd96bf76d7f
Message:
fix: make check (for non-dbug version)
removed: static.h
Files:
1 deleted
15 edited

Legend:

Unmodified
Added
Removed
  • Singular/CMakeLists.txt

    r05051f r17228e  
    205205        gms.h pcv.h eigenval_ip.h
    206206        walk.h
    207         static.h
    208207        omSingularConfig.h)
    209208
  • Singular/Makefile.am

    r05051f r17228e  
    143143   slInit.h \
    144144   links/ssiLink.h \
    145    static.h \
    146145   stype.h \
    147146   subexpr.h \
     
    312311TESTS_ENVIRONMENT += SINGULAR_ROOT_DIR='${abs_top_builddir}'
    313312
     313if WANT_DEBUG
    314314TESTS=test-s-g test-s-r test-d-g test-d-r
     315else
     316TESTS=test-s-r test-d-r
     317endif
    315318check_PROGRAMS=$(TESTS)
    316319
  • Singular/ipid.cc

    r05051f r17228e  
    1010#include "config.h"
    1111#include <kernel/mod2.h>
    12 #include <Singular/static.h>
    1312#include <omalloc/omalloc.h>
    1413#include <Singular/tok.h>
  • Singular/iplib.cc

    r05051f r17228e  
    1414#include "config.h"
    1515#include <kernel/mod2.h>
    16 #include <Singular/static.h>
    1716#include <Singular/tok.h>
    1817#include <misc/options.h>
  • Singular/misc_ip.cc

    r05051f r17228e  
    351351
    352352#include "version.h"
    353 #include "static.h"
    354353
    355354#include "fehelp.h"
  • Singular/mmstd.c

    r05051f r17228e  
    1111
    1212#include <omalloc/omalloc.h>
    13 
    14 #include "static.h"
    1513
    1614// we provide these functions, so that the settings of OM_CHECK
  • Singular/pyobject_setup.cc

    r05051f r17228e  
    1616#include <kernel/mod2.h>
    1717#include <kernel/febase.h>
    18 #include "static.h"
    1918
    2019/* whether pyobject module is linked statically or dynamically */
  • Singular/test.cc

    r05051f r17228e  
    225225#include "slInit.h"
    226226#include "links/ssiLink.h"
    227 #include "static.h"
    228227#include "stype.h"
    229228#include "subexpr.h"
  • dyn_modules/bigintm/Makefile.am

    r05051f r17228e  
    7070TESTS_ENVIRONMENT += SINGULAR_BIN_DIR='${abs_top_builddir}/Singular' $(SHELL) -x
    7171
     72if WANT_DEBUG
    7273TESTS=test_release.sh test_debug.sh
     74else
     75TESTS=test_release.sh
     76endif
    7377
    7478EXTRA_DIST = bigintm.tst test.sh $(TESTS)
  • dyn_modules/syzextra/Makefile.am

    r05051f r17228e  
    6565TESTS_ENVIRONMENT += SINGULAR_BIN_DIR='${abs_top_builddir}/Singular' $(SHELL) -x
    6666
     67if WANT_DEBUG
    6768TESTS=test_release.sh test_debug.sh
     69else
     70TESTS=test_release.sh
     71endif
    6872
    6973EXTRA_DIST = syzextra.tst ederc.tst test.sh $(TESTS)
  • factory/Makefile.am

    r05051f r17228e  
    295295## Test program
    296296##
     297if WANT_DEBUG
    297298TESTS = test-s-g test-s-r test-d-g test-d-r
     299else
     300TESTS = test-s-r test-d-r
     301endif
    298302check_PROGRAMS = $(TESTS)
    299303
  • kernel/Makefile.am

    r05051f r17228e  
    9393TESTS_ENVIRONMENT += SINGULAR_ROOT_DIR='${abs_top_builddir}'
    9494
     95if WANT_DEBUG
    9596TESTS = test-s-g test-s-r test-d-g test-d-r
     97else
     98TESTS = test-s-r test-d-r
     99endif
    96100check_PROGRAMS = $(TESTS)
    97101
  • kernel/feread.cc

    r05051f r17228e  
    2121#include <omalloc/omalloc.h>
    2222#include <misc/options.h>
    23 
    24 #include <Singular/static.h>
    2523
    2624#ifdef HAVE_STATIC
  • libpolys/coeffs/Makefile.am

    r05051f r17228e  
    5656TESTS_ENVIRONMENT += SINGULAR_ROOT_DIR='$(top_builddir)'
    5757
    58 
     58if WANT_DEBUG
    5959TESTS = test_s_g test_s_r test_d_g test_d_r
     60else
     61TESTS = test_s_r test_d_r
     62endif
    6063check_PROGRAMS = $(TESTS)
    6164
  • libpolys/tests/Makefile.am

    r05051f r17228e  
    33AM_CPPFLAGS = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. -I${srcdir} -I${top_srcdir}/../factory/include -I${top_builddir}/../factory/include ${FACTORY_CFLAGS} ${GMP_CFLAGS} ${NTL_CFLAGS}
    44
     5if WANT_DEBUG
    56TESTS = simple_test \
    67    coeffs_test_s_r coeffs_test_s_g coeffs_test_d_r coeffs_test_d_g \
    78    polys_test_s_r polys_test_s_g polys_test_d_r polys_test_d_g \
    89    rings_test_s_r rings_test_s_g rings_test_d_r rings_test_d_g
     10else
     11TESTS = simple_test \
     12    coeffs_test_s_r coeffs_test_d_r \
     13    polys_test_s_r polys_test_d_r \
     14    rings_test_s_r rings_test_d_r
     15endif
    916
    1017check_PROGRAMS = $(TESTS)
Note: See TracChangeset for help on using the changeset viewer.