X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1bbdfba4d473865f9068d953680eef6553d206d6..b8892821525cf5204c842476d26f530ddcca4908:/testsuite/Makefile.am diff --git a/testsuite/Makefile.am b/testsuite/Makefile.am index 1497ea142b..3167ac13a0 100644 --- a/testsuite/Makefile.am +++ b/testsuite/Makefile.am @@ -1,37 +1,62 @@ -INCLUDES = -I$(top_srcdir)/src/include -AM_CFLAGS=-g -Wno-unused-function -AM_LDFLAGS=-g +# Copyright (c) 2004-2007. The SimGrid team. All right reserved. -CLEANFILES = *~ test a.out *.o -DISTCLEANFILES=Makefile.in *~ +# This file is part of the SimGrid project. This is free software: +# You can redistribute and/or modify it under the terms of the +# GNU LGPL (v2.1) licence. + +INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/src -I$(top_srcdir)/src/include +AM_CFLAGS=-g + +CLEANFILES = *~ test a.out *.o testgraph.xml testgraph.dot +DISTCLEANFILES = gras/.libs/* xbt/.libs/* surf/.libs/* msg/.libs/* simdag/.libs/* + +EXTRA_DIST=run_tests.in \ + xbt/graph.xml \ + surf/trace_A.txt surf/trace_B.txt surf/trace_A_failure.txt surf/platform.xml\ + simdag/availability_tremblay.txt simdag/small_platform_variable.xml + # Test stuff -TESTS_PROGS= \ - dynar_int dynar_double dynar_string \ - dict_usage dict_crash \ - log_usage \ - config_usage +xbt_tests = \ + xbt/log_usage \ + xbt/heap_bench \ + xbt/graphxml_usage \ + xbt/context_usage + +SG_tests = \ + surf/maxmin_bench surf/lmm_usage \ + surf/trace_usage surf/surf_usage surf/surf_usage2 + +simdag_tests = simdag/sd_test + +check_PROGRAMS = $(xbt_tests) $(SG_tests) $(simdag_tests) +check_SCRIPTS = run_tests +TESTS=run_tests -# multidict_crash +test: $(noinst_PROGRAMS) $(noinst_SCRIPTS) + ./run_tests +valgrind: $(noinst_PROGRAMS) $(noinst_SCRIPTS) + ./run_tests valgrind +# LDADD_UTILS is still a separate var to distinguish core tester from RL tester +LDADD_SG=$(abs_top_builddir)/src/libsimgrid.la +LDADD_RL=$(abs_top_builddir)/src/libgras.la -noinst_PROGRAMS = $(TESTS_PROGS) gs_example_send gs_example_receive -noinst_SCRIPTS = gs_example +xbt_log_usage_LDADD= $(LDADD_RL) -dynar_int_LDADD= $(top_srcdir)/src/base/libgrasutils.a -dynar_double_LDADD= $(top_srcdir)/src/base/libgrasutils.a -dynar_string_LDADD= $(top_srcdir)/src/base/libgrasutils.a +xbt_heap_bench_LDADD= $(LDADD_RL) -dict_usage_LDADD= $(top_srcdir)/src/base/libgrasutils.a -dict_crash_LDADD= $(top_srcdir)/src/base/libgrasutils.a -multidict_crash_LDADD= $(top_srcdir)/src/base/libgrasutils.a +xbt_graphxml_usage_LDADD= $(LDADD_SG) -config_usage_LDADD= $(top_srcdir)/src/base/libgrasutils.a +xbt_context_usage_LDADD= $(LDADD_SG) -log_usage_LDADD= $(top_srcdir)/src/base/libgrasutils.a +surf_maxmin_bench_LDADD= $(LDADD_SG) +surf_lmm_usage_LDADD= $(LDADD_SG) +surf_trace_usage_LDADD= $(LDADD_SG) +surf_surf_usage_LDADD= $(LDADD_SG) +surf_surf_usage2_LDADD= $(LDADD_SG) -gs_example_send_LDADD= $(top_srcdir)/src/base/libgrasutils.a -gs_example_receive_LDADD= $(top_srcdir)/src/base/libgrasutils.a +simdag_sd_test_LDADD= $(LDADD_SG) -TESTS=$(TESTS_PROGS) #gs_example +include $(top_srcdir)/acmacro/dist-files.mk