-
Notifications
You must be signed in to change notification settings - Fork 281
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test/bench: add Makefile and testlist
"make testing" in test/mpi/bench should work.
- Loading branch information
Showing
3 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## | ||
## Copyright (C) by Argonne National Laboratory | ||
## See COPYRIGHT in top-level directory | ||
## | ||
|
||
include $(top_srcdir)/Makefile_single.mtest | ||
LDADD += -lm | ||
|
||
## for all programs that are just built from the single corresponding source | ||
## file, we don't need per-target _SOURCES rules, automake will infer them | ||
## correctly | ||
noinst_PROGRAMS = \ | ||
p2p_latency \ | ||
p2p_bw | ||
|
||
.def.c: | ||
mydef_page $< |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
p2p_latency 2 resultTest=TestBench | ||
p2p_bw 2 resultTest=TestBench |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters