Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
50fa04bc960ef422f78fcdb7a2f1598485630c01
[simgrid.git] / teshsuite / Makefile.am
1 INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/src -I$(top_srcdir)/src/include
2 AM_CFLAGS = -g
3
4
5 CLEANFILES = gras/datadesc_usage.out datadesc_usage.out
6 EXTRA_DIST=run_tests.in \
7   gras/datadesc.little32_4 \
8   gras/datadesc.little64\
9   gras/datadesc.big32_8 gras/datadesc.big32_8_4 gras/datadesc.big32_2 \
10   gras/mk_datadesc_structs.pl
11   
12
13 TESTS_ENVIRONMENT = $(top_builddir)/tools/tesh/tesh
14 TESTS = xbt/parallel_log_crashtest.tesh     \
15         gras/trp_tcp_usage.tesh             \
16         gras/trp_file_usage.tesh            \
17         gras/datadesc_mem.tesh          \
18         gras/datadesc_rw.tesh           \
19         gras/datadesc_r_little32_4.tesh \
20         gras/datadesc_r_little64.tesh   \
21         \
22         gras/datadesc_r_big32_8.tesh      \
23         gras/datadesc_r_big32_8_4.tesh  \
24         gras/datadesc_r_big32_2.tesh
25
26 # Data sets still to regenerate:
27 XFAIL_TESTS= \
28         gras/datadesc_r_little32.tesh   \
29         gras/datadesc_r_big32_8.tesh      \
30         gras/datadesc_r_big32_8_4.tesh  \
31         gras/datadesc_r_big32_2.tesh
32
33 noinst_PROGRAMS = \
34        xbt/parallel_log_crashtest \
35        \
36        gras/trp_tcp_client   gras/trp_tcp_server   \
37        gras/trp_file_client  gras/trp_file_server  \
38        gras/datadesc_usage   
39                                
40 LDADD_SG=$(abs_top_builddir)/src/libsimgrid.la
41 LDADD_RL=$(abs_top_builddir)/src/libgras.la
42
43 # Try parallel logs 
44 xbt_parallel_log_crashtest_LDADD = $(LDADD_RL)
45
46 # Try raw communication facilities
47 gras_trp_tcp_client_LDADD=     $(LDADD_RL)
48 gras_trp_tcp_server_LDADD=     $(LDADD_RL)
49 gras_trp_file_client_LDADD=    $(LDADD_RL)
50 gras_trp_file_server_LDADD=    $(LDADD_RL)
51
52 # Try structured communication facilities
53 gras_datadesc_usage_SOURCES=   gras/datadesc_usage.c gras/datadesc_structs.c
54 gras_datadesc_usage_LDADD=     $(LDADD_RL)
55
56 gras/datadesc_structs.c: gras/mk_datadesc_structs.pl
57         cd gras ; perl ../$(top_srcdir)/teshsuite/gras/mk_datadesc_structs.pl > datadesc_structs.c
58
59
60 include $(top_srcdir)/acmacro/dist-files.mk