forked from sstsimulator/sst-macro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.config_tests
51 lines (42 loc) · 1.81 KB
/
Makefile.config_tests
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
if !INTEGRATED_SST_CORE
#------------------------------------------------------------------------------------------#
# Config tests {{{#
#------------------------------------------------------------------------------------------#
# These are also run with the same rule
CONFIGTESTS = \
test_configs_smp_pflow \
test_configs_simple_switch \
test_configs_edison_amm1 \
test_configs_edison_amm2 \
test_configs_edison_amm3 \
test_configs_hopper_amm1 \
test_configs_hopper_amm2 \
test_configs_hopper_amm3 \
test_configs_hopper_amm1_simple \
test_configs_hopper_amm2_simple \
test_configs_hopper_amm3_simple \
test_configs_commodore64 \
test_configs_deepthought \
test_configs_franklin \
test_configs_sequoia \
test_configs_exa1_pflow \
test_configs_exa1_simple \
test_configs_exa2_pflow \
test_configs_exa2_simple \
test_configs_hopper_amm4
# gives error
# test_configs_hopper_flow
test_configs_exa%.$(CHKSUF): $(SSTMACEXEC)
$(PYRUNTEST) 5 $@ $(SSTMACEXEC) -f mpi_test_all.ini -i default.ini -i exa$*.ini -i exa_mini_top.ini \
--no-wall-time -p mpi_test_print_all=false
test_configs_smp_%.$(CHKSUF): $(SSTMACEXEC)
$(PYRUNTEST) 5 $@ $(SSTMACEXEC) -f smp_mpi_test.ini -i default.ini -i smp_$*.ini \
--no-wall-time -p mpi_test_print_all=false
test_configs_hopper_amm4.$(CHKSUF): $(SSTMACEXEC)
$(PYRUNTEST) 15 $@ $(SSTMACEXEC) -f mpi_test_all.ini -i default.ini -i hopper_amm4.ini \
--no-wall-time -p mpi_test_print_all=false
test_configs_%.$(CHKSUF): $(SSTMACEXEC)
$(PYRUNTEST) 5 $@ $(SSTMACEXEC) -f mpi_test_all.ini -i default.ini -i $*.ini \
--no-wall-time -p mpi_test_print_all=false
#------------------------------------------------------------------------------------------#
endif