forked from sstsimulator/sst-macro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.core_tests
29 lines (22 loc) · 1.08 KB
/
Makefile.core_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
#------------------------------------------------------------------------------------------#
# Core tests {{{#
#------------------------------------------------------------------------------------------#
CORETESTS+= \
test_core_apps_location_trace \
test_core_apps_ping_all_torus_simple \
test_core_apps_ping_all_simple_fattree \
test_core_apps_ping_all_dragonfly_simple \
test_core_apps_stop_time \
test_sumi_failure \
test_sumi_collective \
test_core_apps_new_collectives
# test_core_apps_ping_all_tiled_dfly \
# test_core_apps_ping_all_butterfly
if HAVE_EVENT_CALENDAR
CORETESTS += test_core_apps_mpi_event_calendar
endif
test_sumi_%.$(CHKSUF): sumi/sst_%
$(PYRUNTEST) 5 $@ sumi/sst_$* -f $(srcdir)/sumi/ini/test_sst_$*.ini --no-wall-time
test_core_apps_ping_all_tiled_dfly.$(CHKSUF): $(SSTMACEXEC)
$(PYRUNTEST) 15 $@ $(SSTMACEXEC) -f $(srcdir)/test_configs/test_ping_all_tiled_dfly.ini --no-wall-time
#------------------------------------------------------------------------------------------#