Skip to content

Commit

Permalink
Merge branch 'develop' into mcm86-04oct24-methdoc-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
markcmiller86 authored Oct 8, 2024
2 parents 540b585 + 19f6ac8 commit 650f228
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
cd visit_run_tests

# Get the latest version of the test script
rm -f regressiontest_pascal
wget https://raw.githubusercontent.com/visit-dav/visit/develop/src/tools/dev/scripts/regressiontest_pascal
rm -f regressiontest_poodle
wget https://raw.githubusercontent.com/visit-dav/visit/develop/src/tools/dev/scripts/regressiontest_poodle

# Run the test suite.
chmod 755 regressiontest_pascal
./regressiontest_pascal
chmod 755 regressiontest_poodle
./regressiontest_poodle
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ SHELL=/bin/sh
[email protected]
#
# run at 10:00 PM, every day
0 22 * * * $HOME/visit_run_tests/pascal_cron_script >> $HOME/visit_run_tests/out 2>&1
0 22 * * * $HOME/visit_run_tests/poodle_cron_script >> $HOME/visit_run_tests/out 2>&1
# run at 6:00 AM, every day
0 6 * * * $HOME/visit_run_tests/pascal_cron_script2 >> $HOME/visit_run_tests/out 2>&1
0 6 * * * $HOME/visit_run_tests/poodle_cron_script2 >> $HOME/visit_run_tests/out 2>&1
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,10 @@
#
# Justin Privitera, Mon Sep 23 10:18:29 PDT 2024
# Update visit-install location.
#
# Eric Brugger, Mon Oct 7 11:15:18 PDT 2024
# Updated to run the test suite on poodle instead of pascal. Made
# the logic that detects new test results more general.
#

# Determine the users name and e-mail address.
Expand Down Expand Up @@ -225,7 +229,7 @@ debug="false"
branch="trunk"
revision="latest"
serial="false"
testHost="pascal"
testHost="poodle"
testDir="/usr/WS1/visit"
post="true"

Expand Down Expand Up @@ -589,7 +593,7 @@ if test "$post" = "true" ; then
# Check the results into github.
cd $buildDir/test
newResults=\`ls -d *22:00\`
newResults=\`ls -d ????-??-??-??:??\`
# should the dashboard have group perms?
cd /usr/WS1/visit/dashboard/dashboard
git add \$newResults baselines index.html
Expand Down Expand Up @@ -643,10 +647,10 @@ EOF
chmod 750 postit_${testHost}

# Run the test suite.
if test "$testHost" = "pascal" ; then
if test "$testHost" = "poodle" ; then
subTag=`date +%Y-%m-%d-%H:%M`
./checkout_pascal $subTag
sbatch --partition=pvis --account=wbronze --time=8:00:00 --ntasks=36 --nodes=1 --tasks-per-node=36 -o pascal_testit_$subTag.out ./runit_pascal $subTag
./checkout_poodle $subTag
sbatch --partition=pbatch --account=wbronze --time=8:00:00 --ntasks=36 --nodes=1 --tasks-per-node=36 -o poodle_testit_$subTag.out ./runit_poodle $subTag
sleep 28800
./postit_pascal $subTag
./postit_poodle $subTag
fi
4 changes: 2 additions & 2 deletions src/tools/dev/scripts/visit-copy-test-results.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
base_dirs = []

imode = 0
mode_dirs = ["pascal_trunk_serial", "pascal_trunk_parallel", "pascal_trunk_scalable_parallel_icet"]
mode_dirs = ["poodle_trunk_serial", "poodle_trunk_parallel", "poodle_trunk_scalable_parallel_icet"]

##############################################################################
#
Expand Down Expand Up @@ -355,7 +355,7 @@ def copy_results(cur_dir):
def main():
dirs = []
for dir in os.listdir("."):
if (dir.endswith("22:00")):
if (dir.endswith("????-??-??-??:??")):
dirs.append(dir)

dirs.sort()
Expand Down

0 comments on commit 650f228

Please sign in to comment.