-
Notifications
You must be signed in to change notification settings - Fork 424
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Consolidate redundant Darwin test scripts (#26366)
Remove redundant Darwin ARM testing scripts, as we now only test Darwin on ARM. The consolidated versions should cover the union of what was covered by the previous ones. Resolves Cray/chapel-private#6880. [reviewed by @tzinsky and @arezaii , thanks!]
- Loading branch information
Showing
5 changed files
with
9 additions
and
30 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,11 +1,12 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Test examples for default configuration on darwin | ||
# Test full suite for default configuration on darwin | ||
|
||
UTIL_CRON_DIR=$(cd $(dirname ${BASH_SOURCE[0]}) ; pwd) | ||
source $UTIL_CRON_DIR/common.bash | ||
source $UTIL_CRON_DIR/common-darwin.bash | ||
source $UTIL_CRON_DIR/common-localnode-paratest.bash | ||
|
||
export CHPL_NIGHTLY_TEST_CONFIG_NAME="darwin" | ||
|
||
$UTIL_CRON_DIR/nightly -cron -examples -blog | ||
$UTIL_CRON_DIR/nightly -cron -blog $(get_nightly_paratest_args) |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,11 +1,12 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Test gasnet (segment everything) against example tests | ||
# Test gasnet (segment everything) against multilocale tests on darwin | ||
|
||
UTIL_CRON_DIR=$(cd $(dirname ${BASH_SOURCE[0]}) ; pwd) | ||
source $UTIL_CRON_DIR/common-gasnet.bash | ||
source $UTIL_CRON_DIR/common-darwin.bash | ||
source $UTIL_CRON_DIR/common-localnode-paratest.bash | ||
|
||
export CHPL_NIGHTLY_TEST_CONFIG_NAME="gasnet.darwin" | ||
|
||
$UTIL_CRON_DIR/nightly -cron -examples | ||
$UTIL_CRON_DIR/nightly -cron -multilocale $(get_nightly_paratest_args) |
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 |
---|---|---|
@@ -1,12 +1,13 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Test gasnet (segment fast) against hellos on darwin | ||
# Test gasnet (segment fast) against multilocale tests on darwin | ||
|
||
UTIL_CRON_DIR=$(cd $(dirname ${BASH_SOURCE[0]}) ; pwd) | ||
source $UTIL_CRON_DIR/common-gasnet.bash | ||
export CHPL_GASNET_SEGMENT=fast | ||
source $UTIL_CRON_DIR/common-darwin.bash | ||
source $UTIL_CRON_DIR/common-localnode-paratest.bash | ||
|
||
export CHPL_NIGHTLY_TEST_CONFIG_NAME="gasnet.fast.darwin" | ||
|
||
$UTIL_CRON_DIR/nightly -cron -hellos | ||
$UTIL_CRON_DIR/nightly -cron -multilocale $(get_nightly_paratest_args) |