Skip to content

Commit

Permalink
Sync HERON and TEAL (#1298)
Browse files Browse the repository at this point in the history
* update TEAL to tests-passing commit after TEAL#7

* updated heron to fixes with teal

* better crash handling for plugin tests
  • Loading branch information
PaulTalbot-INL authored Aug 4, 2020
1 parent 0920d18 commit ef4afcd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion plugins/TEAL
12 changes: 10 additions & 2 deletions run_tests
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,16 @@ if [[ $DO_PLUGINS == 0 ]]; then
echo Starting tests for plugin "$P" ...
# add RAVEN testers to plugin testers
ROOK_COMMAND="$PYTHON_COMMAND $SCRIPT_DIR/rook/main.py --test-dir $LOCATION --testers-dir $FRAMEWORK_DIR/../scripts/TestHarness/testers,$LOCATION/../src/Testers --add-non-default-run-types qsub ${ARGS[@]}"
$ROOK_COMMAND
rc=$?
echo Running ROOK command: "$ROOK_COMMAND" ...
{
# try
$ROOK_COMMAND
rc=$?
} || {
# catch
rc=1
}

ALL_PASS=$(($ALL_PASS + $rc))
if [[ $rc != 0 ]]; then
echo ... there were failed tests for plugin "$P"!
Expand Down

0 comments on commit ef4afcd

Please sign in to comment.