Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Xpetra/MueLu: binary matrix reading #10328

Merged
merged 2 commits into from
Mar 15, 2022

Conversation

cgcgcg
Copy link
Contributor

@cgcgcg cgcgcg commented Mar 14, 2022

@trilinos/xpetra @trilinos/muelu

Motivation

  • Xpetra: Add a unit test for reading of matrices with missing rows
  • MueLu: Fix MM->binary converted for use case with missing rows

@cgcgcg cgcgcg requested a review from a team as a code owner March 14, 2022 22:06
@cgcgcg cgcgcg self-assigned this Mar 14, 2022
for (int row = 0; row < m; row++) {
inds.resize(0);
vals.resize(0);
while (row == i) {
Copy link
Member

@jhux2 jhux2 Mar 14, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this assume the matrix is stored with rows in strictly ascending order?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, it does. But I don't think that that assumption has changed from before.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The original code assumes all the values in a row are contiguously stored, but I think the rows can be in any order. If I understand the logic of the original code, if a new row is encountered, the check while (row == i ... is false, but row==i+1 isn't necessarily true.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, bugger. Yes, that's correct. I guess in that case, the simplest way around all these restrictions is to read the matrix using the Tpetra MM reader, sort it, and then dump to binary.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What do you think of this hacky idea. Keep a boolean array of length num_rows. As a row is processed, mark its entry true. After all rows have been processed, for all rows with false entries, add a "-1" entry in the binary file.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yup, that'll work.

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Failure: Timed out waiting for job Trilinos_pullrequest_clang_10.0.0 to start: Total Wait = 603

@cgcgcg cgcgcg added the AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) label Mar 14, 2022
@cgcgcg cgcgcg requested a review from jhux2 March 14, 2022 23:13
jhux2
jhux2 previously approved these changes Mar 14, 2022
Copy link
Member

@jhux2 jhux2 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lgtm, thanks for fixing this!

@cgcgcg cgcgcg added AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration and removed AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) labels Mar 14, 2022
@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - User Requested Retest - Label AT: RETEST will be reset after testing.

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Failure: Timed out waiting for job Trilinos_pullrequest_clang_10.0.0 to start: Total Wait = 603

@trilinos-autotester trilinos-autotester removed the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Mar 14, 2022
@jhux2 jhux2 added the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Mar 14, 2022
@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - User Requested Retest - Label AT: RETEST will be reset after testing.

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 6939
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 4449
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 4968
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 12042
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 4765
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: python-3

  • Build Num: 1327
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: _cuda_10.1.243

  • Build Num: 553
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Using Repos:

Repo: TRILINOS (cgcgcg/Trilinos)
  • Branch: xpBinMatFix
  • SHA: 7caf91b
  • Mode: TEST_REPO

Pull Request Author: cgcgcg

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Jenkins Testing: 1 or more Jobs FAILED

Note: Testing will normally be attempted again in approx. 2 Hrs 30 Mins. If a change to the PR source branch occurs, the testing will be attempted again on next available autotester run.

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 6939
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 4449
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 4968
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 12042
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 4765
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: python-3

  • Build Num: 1327
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: _cuda_10.1.243

  • Build Num: 553
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 6939 (click to expand)

    ..................................................  Size: 50K
    ..................................................  Size: 100K
    ..................................................  Size: 150K
    ..................................................  Size: 200K
    ..................................................  Size: 250K
    ......................................... Size of output: 290K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 49K
    ..................................................  Size: 99K
    ..................................................  Size: 149K
    ..................................................  Size: 199K
    ..................................................  Size: 249K
    ..................................................  Size: 300K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 649K
    ..................................................  Size: 699K
    ..................................................  Size: 749K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ..................................................  Size: 1049K
    ..................................................  Size: 1099K
    ..................................................  Size: 1149K
    ..................................................  Size: 1199K
    ..................................................  Size: 1249K
    ..................................................  Size: 1299K
    ..................................................  Size: 1349K
    ..................................................  Size: 1399K
    ..................................................  Size: 1449K
    ..................................................  Size: 1499K
    ..................................................  Size: 1550K
    ..................................................  Size: 1599K
    ..................................................  Size: 1649K
    ..................................................  Size: 1699K
    ..................................................  Size: 1749K
    ..................................................  Size: 1800K
    ..................................................  Size: 1849K
    .................... Size of output: 1869K
Error(s) when building project
CMake Warning at /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype/simple_testing.cmake:208 (message):
  Build failed with error 1

build submit error = 0
Starting testing step.
Unable to find required file: /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test/packages/panzer/adapters-stk/test/evaluator_tests/PanzerAdaptersSTK_tPointBasisValuesEvaluator.exe
CMake Error at /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype/simple_testing.cmake:224 (message):
Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_MueLu = ON
-- Setting Trilinos_ENABLE_Xpetra = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-10328-test-Trilinos_pullrequest_gcc_8.3.0-6939
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=20
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxGCC8.3.0TestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

--- ctest command failed!
Done.
Build step 'Execute shell' marked build as failure
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_7.2.0_serial # 4449 (click to expand)

Build name               = PR-10328-test-Trilinos_pullrequest_gcc_7.2.0_serial-4449
Cur dir                  = /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/Trilinos
Binary dir               = /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/pull_request_test
Parallel level           = 20
Testing Parallel level   = 4
skip_by_parts_submit     = OFF
skip_single_submit       = ON
skip_update_step         = ON
skip_upload_config_files = OFF
skip_clean_build_dir     = ON
Subproject count         = 62
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake 
  -C "/scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0SerialTestingSettings.cmake"
  -C "/scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic143&field2=buildname&compare2=61&value2=PR-10328-test-Trilinos_pullrequest_gcc_7.2.0_serial-4449&field3=buildstamp&compare3=61&value3=20220314-2358-Pull Request-Experimental
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-Trilinos_pullrequest_gcc_7.2.0_serial-4449&field2=buildstamp&compare2=61&value2=20220314-2358-Pull Request-Experimental
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-Trilinos_pullrequest_gcc_7.2.0_serial-4449&field2=buildstamp&compare2=61&value2=20220314-2358-Pull Request-Experimental
Starting configure step.
   Each . represents 1024 bytes of output
    ..................................................  Size: 50K
    ..................................................  Size: 100K
    ..................................................  Size: 150K
    ..................................................  Size: 200K
    ...... Size of output: 205K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 49K
    ..................................................  Size: 99K
    ..................................................  Size: 149K
    ..................................................  Size: 199K
    ..................................................  Size: 249K
    ..................................................  Size: 300K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 649K
    ..................................................  Size: 699K
    ..................................................  Size: 749K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ............................................. Size of output: 994K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_MueLu = ON
-- Setting Trilinos_ENABLE_Xpetra = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-10328-test-Trilinos_pullrequest_gcc_7.2.0_serial-4449
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=20
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0SerialTestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

Done.
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_7.2.0_debug # 4968 (click to expand)

CHANGED_PACKAGES_FULL_LIST='MueLu,Xpetra'

D) Filter list of changed packages to get only the PT packages

CHANGED_PACKAGES_ST_LIST='MueLu,Xpetra'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-10328-test-Trilinos_pullrequest_gcc_7.2.0_debug-4968
Cur dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/pull_request_test
Parallel level = 29
Testing Parallel level = 4
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 62
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0DebugTestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic166&field2=buildname&compare2=61&value2=PR-10328-test-Trilinos_pullrequest_gcc_7.2.0_debug-4968&field3=buildstamp&compare3=61&value3=20220314-2358-Pull Request-Experimental
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-Trilinos_pullrequest_gcc_7.2.0_debug-4968&field2=buildstamp&compare2=61&value2=20220314-2358-Pull Request-Experimental
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-Trilinos_pullrequest_gcc_7.2.0_debug-4968&field2=buildstamp&compare2=61&value2=20220314-2358-Pull Request-Experimental
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.................................................. Size: 200K
.................................................. Size: 250K
...................................... Size of output: 287K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.......................... Size of output: 26K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype/simple_testing.cmake:224 (message):
Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_MueLu = ON
-- Setting Trilinos_ENABLE_Xpetra = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-10328-test-Trilinos_pullrequest_gcc_7.2.0_debug-4968
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=29
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0DebugTestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

--- ctest command failed!
Done.
Build step 'Execute shell' marked build as failure
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_intel_17.0.1 # 12042 (click to expand)

C) Get the unfiltered list of changed Trilinos packages (including 'ALL_PACKAGES')

CHANGED_PACKAGES_FULL_LIST='MueLu,Xpetra'

D) Filter list of changed packages to get only the PT packages

CHANGED_PACKAGES_ST_LIST='MueLu,Xpetra'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-10328-test-Trilinos_pullrequest_intel_17.0.1-12042
Cur dir = /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test
Parallel level = 20
Testing Parallel level = 4
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 62
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake
-C "/scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntel17.0.1TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic143&field2=buildname&compare2=61&value2=PR-10328-test-Trilinos_pullrequest_intel_17.0.1-12042&field3=buildstamp&compare3=61&value3=20220314-2359-Pull Request-Experimental
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-Trilinos_pullrequest_intel_17.0.1-12042&field2=buildstamp&compare2=61&value2=20220314-2359-Pull Request-Experimental
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-Trilinos_pullrequest_intel_17.0.1-12042&field2=buildstamp&compare2=61&value2=20220314-2359-Pull Request-Experimental
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.................................................. Size: 200K
.................................................. Size: 250K
.................................................. Size: 300K
... Size of output: 302K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 50K
..................................... Size of output: 87K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_MueLu = ON
-- Setting Trilinos_ENABLE_Xpetra = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-10328-test-Trilinos_pullrequest_intel_17.0.1-12042
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=20
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntel17.0.1TestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

Done.
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_clang_10.0.0 # 4765 (click to expand)

   Each . represents 1024 bytes of output
    ..................................................  Size: 50K
    ..................................................  Size: 100K
    ..................................................  Size: 150K
    ..................................................  Size: 200K
    ..................................................  Size: 250K
    .................................. Size of output: 283K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 49K
    ..................................................  Size: 99K
    ..................................................  Size: 149K
    ..................................................  Size: 199K
    ..................................................  Size: 249K
    ..................................................  Size: 299K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 450K
    ..................................................  Size: 499K
    ..................................................  Size: 550K
    ..................................................  Size: 599K
    ..................................................  Size: 650K
    ..................................................  Size: 700K
    ..................................................  Size: 749K
    ..................................................  Size: 800K
    ..................................................  Size: 850K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 1000K
    ..................................................  Size: 1050K
    ..................................................  Size: 1100K
    ..................................................  Size: 1150K
    ..................................................  Size: 1200K
    ..................................................  Size: 1249K
    ..................................................  Size: 1299K
    ..................................................  Size: 1349K
    ..................................................  Size: 1399K
    ..................................................  Size: 1450K
    ..................................................  Size: 1499K
    ..................................................  Size: 1550K
    ..................................................  Size: 1600K
    ..................................................  Size: 1650K
    ..................................................  Size: 1700K
    ..................................................  Size: 1750K
    ..................................................  Size: 1800K
    ..................................................  Size: 1849K
    ..................................................  Size: 1899K
    ..................................................  Size: 1949K
    ..................................................  Size: 1999K
    ..................................................  Size: 2049K
    ..................................................  Size: 2099K
    ..................................................  Size: 2149K
    ..................................................  Size: 2199K
    ..................................................  Size: 2249K
    ............................. Size of output: 2278K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_MueLu = ON
-- Setting Trilinos_ENABLE_Xpetra = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-10328-test-Trilinos_pullrequest_clang_10.0.0-4765
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=29
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos/cmake/std/PullRequestLinuxClang10.0.0TestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

Done.
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: SUCCESS

Console Output (last 100 lines) : python-3 # 1327 (click to expand)

+--------------------------------------+
| ctest-stage-configure.cmake FINISH   |
+--------------------------------------+
+--------------------------------------+
| ctest-stage-build.cmake START        |
+--------------------------------------+
+----------------------------------------------------------+
+ START build step
+----------------------------------------------------------+
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
+----------------------------------------------------------+
+ END build step - SUCCESS
+----------------------------------------------------------+
+----------------------------------------------------------+
+ submit_by_parts() START
+----------------------------------------------------------+
>>> arg_parts_value: Build
>>> CTEST_DROP_METHOD : https
>>> CTEST_DROP_LOCATION : /submit.php?project=Trilinos
>>> CDash URL1 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic142&field2=buildname&compare2=61&value2=PR-10328-test-rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_pr-framework-1327&field3=buildstamp&compare3=61&value3=20220314-2359-Pull%20Request
>>> CDash URL2 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_pr-framework-1327&field2=buildstamp&compare2=61&value2=20220314-2359-Pull%20Request
>>> CDash URL3 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_pr-framework-1327&field2=buildstamp&compare2=61&value2=20220314-2359-Pull%20Request
>>> ctest_submit(PARTS        Build
                 RETRY_COUNT  5
                 RETRY_DELAY  3
                 RETURN_VALUE ctest_submit_error)
>>> Build submit: OK
>>> CDash Build-ID : 60763
+----------------------------------------------------------+
+ submit_by_parts() FINISH
+----------------------------------------------------------+
+--------------------------------------+
| ctest-stage-build.cmake FINISH       |
+--------------------------------------+
+--------------------------------------+
| ctest-stage-test.cmake START         |
+--------------------------------------+
+----------------------------------------------------------+
+ START test step
+----------------------------------------------------------+
+----------------------------------------------------------+
+ END test step - SUCCESS
+----------------------------------------------------------+
+----------------------------------------------------------+
+ submit_by_parts() START
+----------------------------------------------------------+
>>> arg_parts_value: Test
>>> CTEST_DROP_METHOD : https
>>> CTEST_DROP_LOCATION : /submit.php?project=Trilinos
>>> CDash URL1 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic142&field2=buildname&compare2=61&value2=PR-10328-test-rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_pr-framework-1327&field3=buildstamp&compare3=61&value3=20220314-2359-Pull%20Request
>>> CDash URL2 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_pr-framework-1327&field2=buildstamp&compare2=61&value2=20220314-2359-Pull%20Request
>>> CDash URL3 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_pr-framework-1327&field2=buildstamp&compare2=61&value2=20220314-2359-Pull%20Request
>>> ctest_submit(PARTS        Test
                 RETRY_COUNT  5
                 RETRY_DELAY  3
                 RETURN_VALUE ctest_submit_error)
>>> Test submit: OK
>>> CDash Build-ID : 60763
+----------------------------------------------------------+
+ submit_by_parts() FINISH
+----------------------------------------------------------+
+----------------------------------------------------------+
+ submit_single_submit() START
+----------------------------------------------------------+
>>> SKIPPED
>>> skip_single_submit : ON
+----------------------------------------------------------+
+ submit_single_submit() FINISH
+----------------------------------------------------------+
+----------------------------------------------------------+
+ submit_upload_config_files() START
+----------------------------------------------------------+
>>> ctest_upload(FILES /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/python-3/pull_request_test/configure_command.txt
                 /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/python-3/generatedPRFragment.cmake
                 /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/python-3/packageEnables.cmake )
>>> ctest_submit(PARTS upload
                 RETRY_COUNT  5
                 RETRY_DELAY  3
                 RETURN_VALUE file_upload_erorr)
>>> Config Files Upload: OK
+----------------------------------------------------------+
+ submit_upload_config_files() FINISH
+----------------------------------------------------------+
>>> captured_cmake_error = 0 (unused)
>>> test_error           = 0
Test(s) passed.
+--------------------------------------+
| ctest-stage-test.cmake FINISH        |
+--------------------------------------+
+--------------------------------------+
| ctest-driver.cmake FINISH            |
+--------------------------------------+
TrilinosPRConfigurationStandard.py:99 execute_test()> --- OK
TrilinosPRConfigurationStandard.py:107 execute_test()> 
PullRequestLinuxDriverTest.py main()> Done.
PRDriver> OK
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: SUCCESS

Console Output (last 100 lines) : _cuda_10.1.243 # 553 (click to expand)

    ..................................................  Size: 25899K
    ..................................................  Size: 25950K
    ..................................................  Size: 26000K
    ..................................................  Size: 26049K
    ..................................................  Size: 26100K
    ..................................................  Size: 26150K
    ..................................................  Size: 26200K
    ..................................................  Size: 26249K
    ..................................................  Size: 26299K
    ..................................................  Size: 26349K
    ................... Size of output: 26368K
+----------------------------------------------------------+
+ END build step - SUCCESS
+----------------------------------------------------------+
+----------------------------------------------------------+
+ submit_by_parts() START
+----------------------------------------------------------+
>>> arg_parts_value: Build
>>> CTEST_DROP_METHOD : https
>>> CTEST_DROP_LOCATION : /submit.php?project=Trilinos
>>> CDash URL1 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=vortex45&field2=buildname&compare2=61&value2=PR-10328-test-ats2_cuda-10.1.243-gnu-8.3.1-spmpi-rolling_release_static_Volta70_Power9_no-asan_no-complex_no-fpic_mpi_pt_no-rdc_uvm_deprecated-on_no-package-enables-553&field3=buildstamp&compare3=61&value3=20220315-0002-Pull%20Request
>>> CDash URL2 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-ats2_cuda-10.1.243-gnu-8.3.1-spmpi-rolling_release_static_Volta70_Power9_no-asan_no-complex_no-fpic_mpi_pt_no-rdc_uvm_deprecated-on_no-package-enables-553&field2=buildstamp&compare2=61&value2=20220315-0002-Pull%20Request
>>> CDash URL3 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-ats2_cuda-10.1.243-gnu-8.3.1-spmpi-rolling_release_static_Volta70_Power9_no-asan_no-complex_no-fpic_mpi_pt_no-rdc_uvm_deprecated-on_no-package-enables-553&field2=buildstamp&compare2=61&value2=20220315-0002-Pull%20Request
>>> ctest_submit(PARTS        Build
                 RETRY_COUNT  5
                 RETRY_DELAY  3
                 RETURN_VALUE ctest_submit_error)
>>> Build submit: OK
>>> CDash Build-ID : 60765
+----------------------------------------------------------+
+ submit_by_parts() FINISH
+----------------------------------------------------------+
+--------------------------------------+
| ctest-stage-build.cmake FINISH       |
+--------------------------------------+
+--------------------------------------+
| ctest-stage-test.cmake START         |
+--------------------------------------+
+----------------------------------------------------------+
+ START test step
+----------------------------------------------------------+
+----------------------------------------------------------+
+ END test step - SUCCESS
+----------------------------------------------------------+
+----------------------------------------------------------+
+ submit_by_parts() START
+----------------------------------------------------------+
>>> arg_parts_value: Test
>>> CTEST_DROP_METHOD : https
>>> CTEST_DROP_LOCATION : /submit.php?project=Trilinos
>>> CDash URL1 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=vortex45&field2=buildname&compare2=61&value2=PR-10328-test-ats2_cuda-10.1.243-gnu-8.3.1-spmpi-rolling_release_static_Volta70_Power9_no-asan_no-complex_no-fpic_mpi_pt_no-rdc_uvm_deprecated-on_no-package-enables-553&field3=buildstamp&compare3=61&value3=20220315-0002-Pull%20Request
>>> CDash URL2 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-ats2_cuda-10.1.243-gnu-8.3.1-spmpi-rolling_release_static_Volta70_Power9_no-asan_no-complex_no-fpic_mpi_pt_no-rdc_uvm_deprecated-on_no-package-enables-553&field2=buildstamp&compare2=61&value2=20220315-0002-Pull%20Request
>>> CDash URL3 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-ats2_cuda-10.1.243-gnu-8.3.1-spmpi-rolling_release_static_Volta70_Power9_no-asan_no-complex_no-fpic_mpi_pt_no-rdc_uvm_deprecated-on_no-package-enables-553&field2=buildstamp&compare2=61&value2=20220315-0002-Pull%20Request
>>> ctest_submit(PARTS        Test
                 RETRY_COUNT  5
                 RETRY_DELAY  3
                 RETURN_VALUE ctest_submit_error)
>>> Test submit: OK
>>> CDash Build-ID : 60765
+----------------------------------------------------------+
+ submit_by_parts() FINISH
+----------------------------------------------------------+
+----------------------------------------------------------+
+ submit_single_submit() START
+----------------------------------------------------------+
>>> SKIPPED
>>> skip_single_submit : ON
+----------------------------------------------------------+
+ submit_single_submit() FINISH
+----------------------------------------------------------+
+----------------------------------------------------------+
+ submit_upload_config_files() START
+----------------------------------------------------------+
>>> ctest_upload(FILES /vscratch1/trilinos/jenkins/vortex-trilinos/workspace/trilinos-folder/_cuda_10.1.243@4/pull_request_test/configure_command.txt
                 /vscratch1/trilinos/jenkins/vortex-trilinos/workspace/trilinos-folder/_cuda_10.1.243@4/generatedPRFragment.cmake
                 /vscratch1/trilinos/jenkins/vortex-trilinos/workspace/trilinos-folder/_cuda_10.1.243@4/packageEnables.cmake )
>>> ctest_submit(PARTS upload
                 RETRY_COUNT  5
                 RETRY_DELAY  3
                 RETURN_VALUE file_upload_erorr)
>>> Config Files Upload: OK
+----------------------------------------------------------+
+ submit_upload_config_files() FINISH
+----------------------------------------------------------+
>>> captured_cmake_error = 0 (unused)
>>> test_error           = 0
Test(s) passed.
+--------------------------------------+
| ctest-stage-test.cmake FINISH        |
+--------------------------------------+
+--------------------------------------+
| ctest-driver.cmake FINISH            |
+--------------------------------------+
TrilinosPRConfigurationStandard.py:99 execute_test()> --- OK
TrilinosPRConfigurationStandard.py:107 execute_test()> 
PullRequestLinuxDriverTest.py main()> Done.
PRDriver> OK
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: SUCCESS


CDash Test Results for PR# 10328.


Wiki: How to Reproduce PR Testing Builds and Errors.

@trilinos-autotester trilinos-autotester removed the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Mar 15, 2022
@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 6945
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 4454
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 4973
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 12047
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 4769
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: python-3

  • Build Num: 1331
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: _cuda_10.1.243

  • Build Num: 557
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
PR_LABELS pkg: MueLu;pkg: Xpetra
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Using Repos:

Repo: TRILINOS (cgcgcg/Trilinos)
  • Branch: xpBinMatFix
  • SHA: 7caf91b
  • Mode: TEST_REPO

Pull Request Author: cgcgcg

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Jenkins Testing: 1 or more Jobs FAILED

Note: Testing will normally be attempted again in approx. 2 Hrs 30 Mins. If a change to the PR source branch occurs, the testing will be attempted again on next available autotester run.

Pull Request Auto Testing has FAILED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 6945
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 4454
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 4973
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 12047
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 4769
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: python-3

  • Build Num: 1331
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab

Build Information

Test Name: _cuda_10.1.243

  • Build Num: 557
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
PR_LABELS pkg: MueLu;pkg: Xpetra
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA 7caf91b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA ad816ab
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 6945 (click to expand)

  -C "/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic141&field2=buildname&compare2=61&value2=PR-10328-test-Trilinos_pullrequest_gcc_8.3.0-6945&field3=buildstamp&compare3=61&value3=20220315-0846-Pull Request-Experimental
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-Trilinos_pullrequest_gcc_8.3.0-6945&field2=buildstamp&compare2=61&value2=20220315-0846-Pull Request-Experimental
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-Trilinos_pullrequest_gcc_8.3.0-6945&field2=buildstamp&compare2=61&value2=20220315-0846-Pull Request-Experimental
Starting configure step.
   Each . represents 1024 bytes of output
    ..................................................  Size: 50K
    ..................................................  Size: 100K
    ..................................................  Size: 150K
    ..................................................  Size: 200K
    ..................................................  Size: 250K
    ......................................... Size of output: 290K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 49K
    ..................................................  Size: 99K
    ..................................................  Size: 149K
    ..................................................  Size: 199K
    ..................................................  Size: 249K
    ..................................................  Size: 300K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 649K
    ..................................................  Size: 699K
    ..................................................  Size: 749K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ..................................................  Size: 1049K
    ..................................................  Size: 1099K
    ..................................................  Size: 1149K
    ..................................................  Size: 1199K
    ..................................................  Size: 1249K
    ..................................................  Size: 1299K
    ..................................................  Size: 1349K
    ..................................................  Size: 1399K
    ..................................................  Size: 1449K
    ..................................................  Size: 1499K
    ..................................................  Size: 1549K
    ..................................... Size of output: 1586K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype/simple_testing.cmake:224 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_MueLu = ON
-- Setting Trilinos_ENABLE_Xpetra = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-10328-test-Trilinos_pullrequest_gcc_8.3.0-6945
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=20
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic141/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxGCC8.3.0TestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

--- ctest command failed!
Done.
Build step 'Execute shell' marked build as failure
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_7.2.0_serial # 4454 (click to expand)

Build name               = PR-10328-test-Trilinos_pullrequest_gcc_7.2.0_serial-4454
Cur dir                  = /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/Trilinos
Binary dir               = /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/pull_request_test
Parallel level           = 20
Testing Parallel level   = 4
skip_by_parts_submit     = OFF
skip_single_submit       = ON
skip_update_step         = ON
skip_upload_config_files = OFF
skip_clean_build_dir     = ON
Subproject count         = 62
Dashboard model          = Experimental
Dashboard track          = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake 
  -C "/scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0SerialTestingSettings.cmake"
  -C "/scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic143&field2=buildname&compare2=61&value2=PR-10328-test-Trilinos_pullrequest_gcc_7.2.0_serial-4454&field3=buildstamp&compare3=61&value3=20220315-0846-Pull Request-Experimental
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-Trilinos_pullrequest_gcc_7.2.0_serial-4454&field2=buildstamp&compare2=61&value2=20220315-0846-Pull Request-Experimental
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-Trilinos_pullrequest_gcc_7.2.0_serial-4454&field2=buildstamp&compare2=61&value2=20220315-0846-Pull Request-Experimental
Starting configure step.
   Each . represents 1024 bytes of output
    ..................................................  Size: 50K
    ..................................................  Size: 100K
    ..................................................  Size: 150K
    ..................................................  Size: 200K
    ...... Size of output: 205K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 49K
    ..................................................  Size: 99K
    ..................................................  Size: 149K
    ..................................................  Size: 199K
    ..................................................  Size: 249K
    ..................................................  Size: 300K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 649K
    ..................................................  Size: 699K
    ..................................................  Size: 749K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ............................................. Size of output: 994K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_MueLu = ON
-- Setting Trilinos_ENABLE_Xpetra = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-10328-test-Trilinos_pullrequest_gcc_7.2.0_serial-4454
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=20
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic143/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_serial/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0SerialTestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

Done.
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_7.2.0_debug # 4973 (click to expand)

CHANGED_PACKAGES_FULL_LIST='MueLu,Xpetra'

D) Filter list of changed packages to get only the PT packages

CHANGED_PACKAGES_ST_LIST='MueLu,Xpetra'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-10328-test-Trilinos_pullrequest_gcc_7.2.0_debug-4973
Cur dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/pull_request_test
Parallel level = 29
Testing Parallel level = 4
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 62
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake
-C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0DebugTestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic158&field2=buildname&compare2=61&value2=PR-10328-test-Trilinos_pullrequest_gcc_7.2.0_debug-4973&field3=buildstamp&compare3=61&value3=20220315-0846-Pull Request-Experimental
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-Trilinos_pullrequest_gcc_7.2.0_debug-4973&field2=buildstamp&compare2=61&value2=20220315-0846-Pull Request-Experimental
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-Trilinos_pullrequest_gcc_7.2.0_debug-4973&field2=buildstamp&compare2=61&value2=20220315-0846-Pull Request-Experimental
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.................................................. Size: 200K
.................................................. Size: 250K
...................................... Size of output: 287K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.......................... Size of output: 26K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype/simple_testing.cmake:224 (message):
Test failed with error -1

test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_MueLu = ON
-- Setting Trilinos_ENABLE_Xpetra = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-10328-test-Trilinos_pullrequest_gcc_7.2.0_debug-4973
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=29
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0DebugTestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

--- ctest command failed!
Done.
Build step 'Execute shell' marked build as failure
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_intel_17.0.1 # 12047 (click to expand)

Current directory: /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1

C) Get the unfiltered list of changed Trilinos packages (including 'ALL_PACKAGES')

CHANGED_PACKAGES_FULL_LIST='MueLu,Xpetra'

D) Filter list of changed packages to get only the PT packages

CHANGED_PACKAGES_ST_LIST='MueLu,Xpetra'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-10328-test-Trilinos_pullrequest_intel_17.0.1-12047
Cur dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test
Parallel level = 29
Testing Parallel level = 4
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 62
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake
-C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntel17.0.1TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic158&field2=buildname&compare2=61&value2=PR-10328-test-Trilinos_pullrequest_intel_17.0.1-12047&field3=buildstamp&compare3=61&value3=20220315-0847-Pull Request-Experimental
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-Trilinos_pullrequest_intel_17.0.1-12047&field2=buildstamp&compare2=61&value2=20220315-0847-Pull Request-Experimental
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-Trilinos_pullrequest_intel_17.0.1-12047&field2=buildstamp&compare2=61&value2=20220315-0847-Pull Request-Experimental
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.................................................. Size: 200K
.................................................. Size: 250K
.................................................. Size: 300K
... Size of output: 302K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.......................... Size of output: 26K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_MueLu = ON
-- Setting Trilinos_ENABLE_Xpetra = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-10328-test-Trilinos_pullrequest_intel_17.0.1-12047
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=29
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntel17.0.1TestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

Done.
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_clang_10.0.0 # 4769 (click to expand)

    ..................................................  Size: 99K
    ..................................................  Size: 150K
    ..................................................  Size: 199K
    ..................................................  Size: 249K
    ..................................................  Size: 299K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 649K
    ..................................................  Size: 699K
    ..................................................  Size: 750K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 900K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ..................................................  Size: 1049K
    ..................................................  Size: 1100K
    ..................................................  Size: 1150K
    ..................................................  Size: 1199K
    ..................................................  Size: 1250K
    ..................................................  Size: 1300K
    ..................................................  Size: 1350K
    ..................................................  Size: 1400K
    ..................................................  Size: 1449K
    ..................................................  Size: 1499K
    ..................................................  Size: 1550K
    ..................................................  Size: 1599K
    ..................................................  Size: 1649K
    ..................................................  Size: 1699K
    ..................................................  Size: 1749K
    ..................................................  Size: 1800K
    ..................................................  Size: 1849K
    ..................................................  Size: 1899K
    ..................................................  Size: 1949K
    ..................................................  Size: 1999K
    ..................................................  Size: 2049K
    ..................................................  Size: 2100K
    ..................................................  Size: 2150K
    ..................................................  Size: 2199K
    ..................................................  Size: 2249K
    ..................................................  Size: 2299K
    ..................................................  Size: 2349K
    ..................................................  Size: 2399K
    ..................................................  Size: 2450K
    ..................................................  Size: 2499K
    ..................................................  Size: 2549K
    ..................................................  Size: 2599K
    ..................................................  Size: 2650K
    ..................................................  Size: 2700K
    ..................................................  Size: 2750K
    ..................................................  Size: 2799K
    ..................................................  Size: 2849K
    ........................ Size of output: 2874K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0

Enabled Packages:
-- Setting Trilinos_ENABLE_MueLu = ON
-- Setting Trilinos_ENABLE_Xpetra = ON

+--------------------------------------------------------------------+
| G e n e r a t e packageEnables.cmake C O M P L E T E D
+--------------------------------------------------------------------+

+==============================================================================+
| E X E C U T E S T A N D A R D P U L L R E Q E S T T E S T
+==============================================================================+

--- Change directory to /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/TFW_testing_single_configure_prototype
--- OK

--- ctest command:
--- cmd = ctest
-S
simple_testing.cmake
-Dbuild_name=PR-10328-test-Trilinos_pullrequest_clang_10.0.0-4769
-Dskip_by_parts_submit=OFF
-Dskip_update_step=ON
-Ddashboard_model=Experimental
-Ddashboard_track=Pull Request
-DPARALLEL_LEVEL=29
-DTEST_PARALLEL_LEVEL=4
-Dbuild_dir=/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test
-Dconfigure_script=/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos/cmake/std/PullRequestLinuxClang10.0.0TestingSettings.cmake
-Dpackage_enables=../packageEnables.cmake
-Dsubprojects_file=../package_subproject_list.cmake

Done.
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: SUCCESS

Console Output (last 100 lines) : python-3 # 1331 (click to expand)

+--------------------------------------+
| ctest-stage-configure.cmake FINISH   |
+--------------------------------------+
+--------------------------------------+
| ctest-stage-build.cmake START        |
+--------------------------------------+
+----------------------------------------------------------+
+ START build step
+----------------------------------------------------------+
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
+----------------------------------------------------------+
+ END build step - SUCCESS
+----------------------------------------------------------+
+----------------------------------------------------------+
+ submit_by_parts() START
+----------------------------------------------------------+
>>> arg_parts_value: Build
>>> CTEST_DROP_METHOD : https
>>> CTEST_DROP_LOCATION : /submit.php?project=Trilinos
>>> CDash URL1 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic142&field2=buildname&compare2=61&value2=PR-10328-test-rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_pr-framework-1331&field3=buildstamp&compare3=61&value3=20220315-0847-Pull%20Request
>>> CDash URL2 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_pr-framework-1331&field2=buildstamp&compare2=61&value2=20220315-0847-Pull%20Request
>>> CDash URL3 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_pr-framework-1331&field2=buildstamp&compare2=61&value2=20220315-0847-Pull%20Request
>>> ctest_submit(PARTS        Build
                 RETRY_COUNT  5
                 RETRY_DELAY  3
                 RETURN_VALUE ctest_submit_error)
>>> Build submit: OK
>>> CDash Build-ID : 61402
+----------------------------------------------------------+
+ submit_by_parts() FINISH
+----------------------------------------------------------+
+--------------------------------------+
| ctest-stage-build.cmake FINISH       |
+--------------------------------------+
+--------------------------------------+
| ctest-stage-test.cmake START         |
+--------------------------------------+
+----------------------------------------------------------+
+ START test step
+----------------------------------------------------------+
+----------------------------------------------------------+
+ END test step - SUCCESS
+----------------------------------------------------------+
+----------------------------------------------------------+
+ submit_by_parts() START
+----------------------------------------------------------+
>>> arg_parts_value: Test
>>> CTEST_DROP_METHOD : https
>>> CTEST_DROP_LOCATION : /submit.php?project=Trilinos
>>> CDash URL1 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic142&field2=buildname&compare2=61&value2=PR-10328-test-rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_pr-framework-1331&field3=buildstamp&compare3=61&value3=20220315-0847-Pull%20Request
>>> CDash URL2 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_pr-framework-1331&field2=buildstamp&compare2=61&value2=20220315-0847-Pull%20Request
>>> CDash URL3 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-rhel7_sems-gnu-7.2.0-anaconda3-serial_debug_shared_no-kokkos-arch_no-asan_no-complex_no-fpic_no-mpi_no-pt_no-rdc_pr-framework-1331&field2=buildstamp&compare2=61&value2=20220315-0847-Pull%20Request
>>> ctest_submit(PARTS        Test
                 RETRY_COUNT  5
                 RETRY_DELAY  3
                 RETURN_VALUE ctest_submit_error)
>>> Test submit: OK
>>> CDash Build-ID : 61402
+----------------------------------------------------------+
+ submit_by_parts() FINISH
+----------------------------------------------------------+
+----------------------------------------------------------+
+ submit_single_submit() START
+----------------------------------------------------------+
>>> SKIPPED
>>> skip_single_submit : ON
+----------------------------------------------------------+
+ submit_single_submit() FINISH
+----------------------------------------------------------+
+----------------------------------------------------------+
+ submit_upload_config_files() START
+----------------------------------------------------------+
>>> ctest_upload(FILES /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/python-3/pull_request_test/configure_command.txt
                 /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/python-3/generatedPRFragment.cmake
                 /scratch/trilinos/jenkins/ascic142/workspace/trilinos-folder/python-3/packageEnables.cmake )
>>> ctest_submit(PARTS upload
                 RETRY_COUNT  5
                 RETRY_DELAY  3
                 RETURN_VALUE file_upload_erorr)
>>> Config Files Upload: OK
+----------------------------------------------------------+
+ submit_upload_config_files() FINISH
+----------------------------------------------------------+
>>> captured_cmake_error = 0 (unused)
>>> test_error           = 0
Test(s) passed.
+--------------------------------------+
| ctest-stage-test.cmake FINISH        |
+--------------------------------------+
+--------------------------------------+
| ctest-driver.cmake FINISH            |
+--------------------------------------+
TrilinosPRConfigurationStandard.py:99 execute_test()> --- OK
TrilinosPRConfigurationStandard.py:107 execute_test()> 
PullRequestLinuxDriverTest.py main()> Done.
PRDriver> OK
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: SUCCESS

Console Output (last 100 lines) : _cuda_10.1.243 # 557 (click to expand)

    ..................................................  Size: 25900K
    ..................................................  Size: 25950K
    ..................................................  Size: 26000K
    ..................................................  Size: 26049K
    ..................................................  Size: 26100K
    ..................................................  Size: 26149K
    ..................................................  Size: 26199K
    ..................................................  Size: 26249K
    ..................................................  Size: 26299K
    ..................................................  Size: 26350K
    ................... Size of output: 26368K
+----------------------------------------------------------+
+ END build step - SUCCESS
+----------------------------------------------------------+
+----------------------------------------------------------+
+ submit_by_parts() START
+----------------------------------------------------------+
>>> arg_parts_value: Build
>>> CTEST_DROP_METHOD : https
>>> CTEST_DROP_LOCATION : /submit.php?project=Trilinos
>>> CDash URL1 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=vortex18&field2=buildname&compare2=61&value2=PR-10328-test-ats2_cuda-10.1.243-gnu-8.3.1-spmpi-rolling_release_static_Volta70_Power9_no-asan_no-complex_no-fpic_mpi_pt_no-rdc_uvm_deprecated-on_no-package-enables-557&field3=buildstamp&compare3=61&value3=20220315-0850-Pull%20Request
>>> CDash URL2 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-ats2_cuda-10.1.243-gnu-8.3.1-spmpi-rolling_release_static_Volta70_Power9_no-asan_no-complex_no-fpic_mpi_pt_no-rdc_uvm_deprecated-on_no-package-enables-557&field2=buildstamp&compare2=61&value2=20220315-0850-Pull%20Request
>>> CDash URL3 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-ats2_cuda-10.1.243-gnu-8.3.1-spmpi-rolling_release_static_Volta70_Power9_no-asan_no-complex_no-fpic_mpi_pt_no-rdc_uvm_deprecated-on_no-package-enables-557&field2=buildstamp&compare2=61&value2=20220315-0850-Pull%20Request
>>> ctest_submit(PARTS        Build
                 RETRY_COUNT  5
                 RETRY_DELAY  3
                 RETURN_VALUE ctest_submit_error)
>>> Build submit: OK
>>> CDash Build-ID : 61404
+----------------------------------------------------------+
+ submit_by_parts() FINISH
+----------------------------------------------------------+
+--------------------------------------+
| ctest-stage-build.cmake FINISH       |
+--------------------------------------+
+--------------------------------------+
| ctest-stage-test.cmake START         |
+--------------------------------------+
+----------------------------------------------------------+
+ START test step
+----------------------------------------------------------+
+----------------------------------------------------------+
+ END test step - SUCCESS
+----------------------------------------------------------+
+----------------------------------------------------------+
+ submit_by_parts() START
+----------------------------------------------------------+
>>> arg_parts_value: Test
>>> CTEST_DROP_METHOD : https
>>> CTEST_DROP_LOCATION : /submit.php?project=Trilinos
>>> CDash URL1 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=vortex18&field2=buildname&compare2=61&value2=PR-10328-test-ats2_cuda-10.1.243-gnu-8.3.1-spmpi-rolling_release_static_Volta70_Power9_no-asan_no-complex_no-fpic_mpi_pt_no-rdc_uvm_deprecated-on_no-package-enables-557&field3=buildstamp&compare3=61&value3=20220315-0850-Pull%20Request
>>> CDash URL2 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-ats2_cuda-10.1.243-gnu-8.3.1-spmpi-rolling_release_static_Volta70_Power9_no-asan_no-complex_no-fpic_mpi_pt_no-rdc_uvm_deprecated-on_no-package-enables-557&field2=buildstamp&compare2=61&value2=20220315-0850-Pull%20Request
>>> CDash URL3 = https://trilinos-cdash.sandia.gov/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-10328-test-ats2_cuda-10.1.243-gnu-8.3.1-spmpi-rolling_release_static_Volta70_Power9_no-asan_no-complex_no-fpic_mpi_pt_no-rdc_uvm_deprecated-on_no-package-enables-557&field2=buildstamp&compare2=61&value2=20220315-0850-Pull%20Request
>>> ctest_submit(PARTS        Test
                 RETRY_COUNT  5
                 RETRY_DELAY  3
                 RETURN_VALUE ctest_submit_error)
>>> Test submit: OK
>>> CDash Build-ID : 61404
+----------------------------------------------------------+
+ submit_by_parts() FINISH
+----------------------------------------------------------+
+----------------------------------------------------------+
+ submit_single_submit() START
+----------------------------------------------------------+
>>> SKIPPED
>>> skip_single_submit : ON
+----------------------------------------------------------+
+ submit_single_submit() FINISH
+----------------------------------------------------------+
+----------------------------------------------------------+
+ submit_upload_config_files() START
+----------------------------------------------------------+
>>> ctest_upload(FILES /vscratch1/trilinos/jenkins/vortex-trilinos/workspace/trilinos-folder/_cuda_10.1.243@3/pull_request_test/configure_command.txt
                 /vscratch1/trilinos/jenkins/vortex-trilinos/workspace/trilinos-folder/_cuda_10.1.243@3/generatedPRFragment.cmake
                 /vscratch1/trilinos/jenkins/vortex-trilinos/workspace/trilinos-folder/_cuda_10.1.243@3/packageEnables.cmake )
>>> ctest_submit(PARTS upload
                 RETRY_COUNT  5
                 RETRY_DELAY  3
                 RETURN_VALUE file_upload_erorr)
>>> Config Files Upload: OK
+----------------------------------------------------------+
+ submit_upload_config_files() FINISH
+----------------------------------------------------------+
>>> captured_cmake_error = 0 (unused)
>>> test_error           = 0
Test(s) passed.
+--------------------------------------+
| ctest-stage-test.cmake FINISH        |
+--------------------------------------+
+--------------------------------------+
| ctest-driver.cmake FINISH            |
+--------------------------------------+
TrilinosPRConfigurationStandard.py:99 execute_test()> --- OK
TrilinosPRConfigurationStandard.py:107 execute_test()> 
PullRequestLinuxDriverTest.py main()> Done.
PRDriver> OK
Archiving artifacts
[Checks API] No suitable checks publisher found.
Finished: SUCCESS


CDash Test Results for PR# 10328.


Wiki: How to Reproduce PR Testing Builds and Errors.

@cgcgcg cgcgcg added the AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) label Mar 15, 2022
@cgcgcg cgcgcg removed the AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) label Mar 15, 2022
@cgcgcg cgcgcg added the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Mar 15, 2022
@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - User Requested Retest - Label AT: RETEST will be reset after testing.

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request.

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 6950
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA cc51e85
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA 0b00ccf

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 4458
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA cc51e85
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA 0b00ccf

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 4977
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA cc51e85
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA 0b00ccf

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 12051
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA cc51e85
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA 0b00ccf

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 4771
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA cc51e85
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA 0b00ccf

Build Information

Test Name: python-3

  • Build Num: 1333
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA cc51e85
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA 0b00ccf

Build Information

Test Name: _cuda_10.1.243

  • Build Num: 560
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA cc51e85
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA 0b00ccf

Using Repos:

Repo: TRILINOS (cgcgcg/Trilinos)
  • Branch: xpBinMatFix
  • SHA: cc51e85
  • Mode: TEST_REPO

Pull Request Author: cgcgcg

Teuchos::RCP<const Teuchos::Comm<int> > comm = Xpetra::DefaultPlatform::getDefaultPlatform().getComm();
TEUCHOS_ASSERT_EQUALITY(comm->getSize(), 1);

if (Teuchos::ScalarTraits<Scalar>::isComplex)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I approve!

Copy link
Member

@jhux2 jhux2 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lgtm

@cgcgcg cgcgcg added the AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed label Mar 15, 2022
@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Jenkins Testing: all Jobs PASSED

Pull Request Auto Testing has PASSED (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 6950
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA cc51e85
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA 0b00ccf

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_serial

  • Build Num: 4458
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA cc51e85
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA 0b00ccf

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 4977
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA cc51e85
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA 0b00ccf

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 12051
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA cc51e85
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA 0b00ccf

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 4771
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA cc51e85
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA 0b00ccf

Build Information

Test Name: python-3

  • Build Num: 1333
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA cc51e85
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA 0b00ccf

Build Information

Test Name: _cuda_10.1.243

  • Build Num: 560
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
FORCE_CLEAN true
PR_LABELS pkg: MueLu;pkg: Xpetra;AT: RETEST
PULLREQUESTNUM 10328
PULLREQUEST_CDASH_TRACK Pull Request
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH xpBinMatFix
TRILINOS_SOURCE_REPO https:/cgcgcg/Trilinos
TRILINOS_SOURCE_SHA cc51e85
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https:/trilinos/Trilinos
TRILINOS_TARGET_SHA 0b00ccf


CDash Test Results for PR# 10328.

@trilinos-autotester trilinos-autotester removed the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Mar 15, 2022
@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Merge Inspection' - SUCCESS: The last commit to this Pull Request has been INSPECTED AND APPROVED by [ jhux2 ]!

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Pull Request will be Automerged

@trilinos-autotester trilinos-autotester merged commit ffb33c1 into trilinos:develop Mar 15, 2022
@trilinos-autotester
Copy link
Contributor

Merge on Pull Request# 10328: IS A SUCCESS - Pull Request successfully merged

@trilinos-autotester trilinos-autotester removed the AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed label Mar 15, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants