forked from openshmem-org/tests-sos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
37 lines (28 loc) · 1.11 KB
/
README
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
========================================================================
Sandia OpenSHEM Test Suite
========================================================================
** About
This package contains the Sandia OpenSHMEM unit tests and performance
test suite. For the most recent versions of these tests or to submit
bugfixes, please refer to the Sandia OpenSHMEM repository at
https://github.com/Sandia-OpenSHMEM/SOS.
** Building
The Sandia OpenSHMEM test suite utilizes the GNU Autotools build
system. The standard GNU configure script and make system is used, as
follows:
$ ./autogen.sh
$ mkdir build
$ cd build
$ ../configure <options> CC=oshcc CXX=oshc++ FC=oshfort
$ make
$ make check
Several make variables can be used to modify the behvior of make check:
NPROCS
Set the number of processes used to run each test.
Example: "make check NPROCS=4"
TEST_RUNNER
Specify the command used to run each test. Example:
"make check TEST_RUNNER='oshrun -np 2 -hosts compute1,compute2'"
TESTS
Specify which tests to run. For example, "make check TESTS="
builds the tests without running them.