-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from TACC/devel
Devel
- Loading branch information
Showing
6 changed files
with
105 additions
and
23 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,8 @@ | ||
language: bash | ||
|
||
os: | ||
- linux | ||
- osx | ||
|
||
script: | ||
- bash .travis_test_file |
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,30 @@ | ||
#!/bin/bash | ||
|
||
if [ "x$1" == "x" ] | ||
then | ||
export LAUNCHER_DIR=`pwd` | ||
else | ||
export LAUNCHER_DIR=$1 | ||
fi | ||
|
||
export LAUNCHER_JOB_FILE=$LAUNCHER_DIR/tests/default_work_file | ||
export LAUNCHER_SCHED=block | ||
export LAUNCHER_WORKDIR=`pwd` | ||
$LAUNCHER_DIR/paramrun | ||
|
||
export LAUNCHER_PPN=15 | ||
$LAUNCHER_DIR/paramrun | ||
|
||
export LAUNCHER_PPN=1 | ||
export LAUNCHER_SCHED=interleaved | ||
$LAUNCHER_DIR/paramrun | ||
|
||
export LAUNCHER_PPN=20 | ||
$LAUNCHER_DIR/paramrun | ||
|
||
export LAUNCHER_PPN=1 | ||
export LAUNCHER_SCHED=dynamic | ||
$LAUNCHER_DIR/paramrun | ||
|
||
export LAUNCHER_PPN=20 | ||
$LAUNCHER_DIR/paramrun |
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
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
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,18 @@ | ||
#!/bin/bash | ||
|
||
if [ "x$1" == "x" ] | ||
then | ||
export LAUNCHER_DIR=../ | ||
else | ||
export LAUNCHER_DIR=$1 | ||
fi | ||
|
||
export LAUNCHER_JOB_FILE=$LAUNCHER_DIR/extras/examples/helloworldshort | ||
export LAUNCHER_SCHED=block | ||
export LAUNCHER_WORKDIR=`pwd` | ||
|
||
$LAUNCHER_DIR/paramrun | ||
|
||
export LAUNCHER_SCHED=interleaved | ||
|
||
$LAUNCHER_DIR/paramrun |
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