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

Tpetra: Clean up CrsGraph::Swap testing #4089

Merged
merged 5 commits into from Dec 20, 2018
Merged

Tpetra: Clean up CrsGraph::Swap testing #4089

merged 5 commits into from Dec 20, 2018

Conversation

william76
Copy link
Contributor

@trilinos/tpetra

There were some #if 0 blocks in the test which needed to be changed to use Tpetra::Details::Behavior::verbose() for consistency.

This PR is convenient as well for testing changes to PR jobs on Jenkins for @trilinos/framework for #4065 =) .

There were some `#if 0` blocks in the test which needed to be changed
to use `Tpetra::Details::Behavior::verbose()` for consistency.
@william76 william76 added pkg: Tpetra AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed labels Dec 19, 2018
@william76 william76 self-assigned this Dec 19, 2018
@bartlettroscoe bartlettroscoe added the stage: in progress Work on the issue has started label Dec 19, 2018
@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_4.8.4

  • Build Num: 2164
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 5b7bd3a
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 1967
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 5b7bd3a
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 454
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 5b7bd3a
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 65
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 5b7bd3a
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Using Repos:

Repo: TRILINOS (william76/Trilinos)
  • Branch: Tpetra-CrsGraph-Swap-TestCleanup
  • SHA: 5b7bd3a
  • Mode: TEST_REPO

Pull Request Author: william76

mhoemmen
mhoemmen previously approved these changes Dec 19, 2018
Copy link
Contributor

@mhoemmen mhoemmen left a comment

Choose a reason for hiding this comment

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

Thanks! Please see comments.

{
std::cout << "p=0 | gbl_row : " << p.first << " (" << p.second.size() << ") ";
for(auto& j: p.second)
std::cout << "p=0 | gbl_num_rows: " << gbl_rows.size() << std::endl;
Copy link
Contributor

Choose a reason for hiding this comment

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

For future reference (not for this PR), when printing debugging messages nondeterministically over multiple MPI processes to cout or cerr, good practice is to assemble each line (including the endline character) from each process as a string. This tends to make messages from different processes less mixed up. For example:

std::ostringstream os;
os << "(Proc " << myRank << ") gbl_num_rows: " << gbl_rows.size () << std::endl;
std::cout << os.str ();

Copy link
Contributor

@mhoemmen mhoemmen Dec 19, 2018

Choose a reason for hiding this comment

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

At some point, it would make sense to turn that into a macro:

#define TPETRA_PRINTLN_LOCAL( out, myRank, stuff ) \
  do { \
    std::ostringstream tpl_out; \
    tpl_out << "(Proc " << myRank << ") " << stuff << std::endl; \
    out << tpl_out.str (); \
  } while (false)

Alas, C++ lacks the equivalent of Common Lisp's GENSYM, so I can't guarantee that tpl_out doesn't shadow any other names in scope. This should still work, though.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Is the #define TPETRA_PRINTLN_LOCAL a thing that already exists, or are you suggesting creating this macro in the file to use? Either way is doable, but if there's already a macro or function defined that does this then I'm happy to use it :)

Copy link
Contributor

Choose a reason for hiding this comment

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

@william76 I'm just suggesting this as a later thing to think about, after this PR is done :-D Thanks though!

Addressing comments from @mhoemmen on PR 4089.
- Changed my typedefs naming convention from `foo_t` to `foo_type`
@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Error: Jenkins Jobs - A user has commited a change to the PR before testing completed. The original testing SHA = 5b7bd3a Does not match the current commit SHA = bc8ed7f. The Jenkins Jobs will be shutdown; Testing of this PR must occur again.

@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_4.8.4

  • Build Num: 2164
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 5b7bd3a
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 1967
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 5b7bd3a
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 454
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 5b7bd3a
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 65
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 5b7bd3a
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 2164 (click to expand)

git diff --name-only origin/develop..HEAD > /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4

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

CHANGED_PACKAGES_FULL_LIST='TpetraCore'

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

CHANGED_PACKAGES_PT_LIST='TpetraCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_TpetraCore = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
    Build name = PR-4089-test-Trilinos_pullrequest_gcc_4.8.4-2164
    Cur dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
    Source dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
    Binary dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test
    Parallel level = 18
    skip_by_parts_submit = OFF
    skip_single_submit = ON
    skip_update_step = ON
    skip_upload_config_files = OFF
    skip_clean_build_dir = OFF
    Subproject count = 53
    Dashboard model = Experimental
    Dashboard track = Pull Request
    Running configuration:
    /projects/sems/install/rhel6-x86_64/atdm/binary-install/cmake-3.11.1-Linux-x86_64/bin/cmake
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake"
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/packageEnables.cmake"
    -DTrilinos_ENABLE_TESTS:BOOL=ON
    -G "Ninja"
    /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
    CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
    CDash URL1 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic142&field2=buildname&compare2=61&value2=PR-4089-test-Trilinos_pullrequest_gcc_4.8.4-2164&field3=buildstamp&compare3=61&value3=20181219-1722-Pull Request
    CDash URL2 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_gcc_4.8.4-2164&field2=buildstamp&compare2=61&value2=20181219-1722-Pull Request
    CDash URL3 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_gcc_4.8.4-2164&field2=buildstamp&compare2=61&value2=20181219-1722-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    .................................................. Size: 150K
    .................................................. Size: 200K
    .................................................. Size: 250K
    ........................... Size of output: 276K
    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: 449K
    .................................................. Size: 499K
    .................................................. Size: 549K
    .................................................. Size: 599K
    .................................................. Size: 649K
    .................................................. Size: 699K
    .................................................. Size: 749K
    .................................................. Size: 799K
    .................................................. Size: 849K
    .................................................. Size: 899K
    .................................................. Size: 949K
    .................................................. Size: 999K
    .................................................. Size: 1050K
    .................................................. Size: 1099K
    .................................................. Size: 1149K
    .................................................. Size: 1199K
    .................................................. Size: 1249K
    .................................................. Size: 1299K
    .................................................. Size: 1349K
    .................................................. Size: 1399K
    .................................................. Size: 1449K
    .................................................. Size: 1499K
    .................................................. Size: 1550K
    .................................................. Size: 1600K
    .................................................. Size: 1649K
    .................................................. Size: 1699K
    . Size of output: 1701K
    Build succeeded.
    build submit error = 0
    Starting testing step.
    Build was aborted
    Aborted by James M Willenbring
    Archiving artifacts
    Finished: ABORTED
Console Output (last 100 lines) : Trilinos_pullrequest_intel_17.0.1 # 1967 (click to expand)

***
*** Generating set of Trilinos enables given modified packages from
*** git commit origin/develop to HEAD
***

TRILINOS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
TRIBITS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/tribits

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

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

git diff --name-only origin/develop..HEAD > /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/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='TpetraCore'

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

CHANGED_PACKAGES_PT_LIST='TpetraCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_TpetraCore = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
    Build name = PR-4089-test-Trilinos_pullrequest_intel_17.0.1-1967
    Cur dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
    Source dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
    Binary dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test
    Parallel level = 18
    skip_by_parts_submit = OFF
    skip_single_submit = ON
    skip_update_step = ON
    skip_upload_config_files = OFF
    skip_clean_build_dir = OFF
    Subproject count = 53
    Dashboard model = Experimental
    Dashboard track = Pull Request
    Running configuration:
    /projects/sems/install/rhel6-x86_64/atdm/binary-install/cmake-3.11.1-Linux-x86_64/bin/cmake
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntelTestingSettings.cmake"
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/packageEnables.cmake"
    -DTrilinos_ENABLE_TESTS:BOOL=ON
    -G "Ninja"
    /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
    CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
    CDash URL1 = https://testing-vm.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-4089-test-Trilinos_pullrequest_intel_17.0.1-1967&field3=buildstamp&compare3=61&value3=20181219-1722-Pull Request
    CDash URL2 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_intel_17.0.1-1967&field2=buildstamp&compare2=61&value2=20181219-1722-Pull Request
    CDash URL3 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_intel_17.0.1-1967&field2=buildstamp&compare2=61&value2=20181219-1722-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    .................................................. Size: 150K
    .................................................. Size: 200K
    .................................................. Size: 250K
    ......................... Size of output: 274K
    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: 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
    ...............................Build was aborted
    Aborted by James M Willenbring
    Archiving artifacts
    Finished: ABORTED
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.9.3_SERIAL # 454 (click to expand)

B) Get the set of changed files

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL

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

CHANGED_PACKAGES_FULL_LIST='TpetraCore'

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

CHANGED_PACKAGES_PT_LIST='TpetraCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_TpetraCore = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
    Build name = PR-4089-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-454
    Cur dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
    Source dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
    Binary dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test
    Parallel level = 18
    skip_by_parts_submit = OFF
    skip_single_submit = ON
    skip_update_step = ON
    skip_upload_config_files = OFF
    skip_clean_build_dir = OFF
    Subproject count = 53
    Dashboard model = Experimental
    Dashboard track = Pull Request
    Running configuration:
    /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxGCC4.9.3TestingSettingsSERIAL.cmake"
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/packageEnables.cmake"
    -DTrilinos_ENABLE_TESTS:BOOL=ON
    -G "Ninja"
    /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
    CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
    CDash URL1 = https://testing-vm.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-4089-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-454&field3=buildstamp&compare3=61&value3=20181219-1722-Pull Request
    CDash URL2 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-454&field2=buildstamp&compare2=61&value2=20181219-1722-Pull Request
    CDash URL3 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-454&field2=buildstamp&compare2=61&value2=20181219-1722-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    .................................................. Size: 150K
    .................................................. Size: 200K
    .................................................. Size: 250K
    .............. Size of output: 263K
    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: 350K
    .................................................. Size: 399K
    .................................................. Size: 449K
    .................................................. Size: 500K
    .................................................. 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: 1150K
    .................................................. Size: 1199K
    .................................................. Size: 1249K
    .................................................. Size: 1299K
    .................................................. Size: 1349K
    .................................................. Size: 1399K
    .................................................. Size: 1450K
    .................................................. Size: 1499K
    ............. Size of output: 1513K
    Build succeeded.
    build submit error = 0
    Starting testing step.
    Tests succeeded.
    test submit error = 0
    File upload submit error = 0
    Archiving artifacts
    Finished: SUCCESS
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_7.2.0 # 65 (click to expand)

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

CHANGED_PACKAGES_FULL_LIST='TpetraCore'

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

CHANGED_PACKAGES_PT_LIST='TpetraCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_TpetraCore = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
    Build name = PR-4089-test-Trilinos_pullrequest_gcc_7.2.0-65
    Cur dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
    Source dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos
    Binary dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test
    Parallel level = 18
    skip_by_parts_submit = OFF
    skip_single_submit = ON
    skip_update_step = ON
    skip_upload_config_files = OFF
    skip_clean_build_dir = OFF
    Subproject count = 53
    Dashboard model = Experimental
    Dashboard track = Pull Request
    Running configuration:
    /projects/sems/install/rhel6-x86_64/atdm/binary-install/cmake-3.11.1-Linux-x86_64/bin/cmake
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0TestingSettings.cmake"
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/packageEnables.cmake"
    -DTrilinos_ENABLE_TESTS:BOOL=ON
    -G "Ninja"
    /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos
    CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
    CDash URL1 = https://testing-vm.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-4089-test-Trilinos_pullrequest_gcc_7.2.0-65&field3=buildstamp&compare3=61&value3=20181219-1722-Pull Request
    CDash URL2 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_gcc_7.2.0-65&field2=buildstamp&compare2=61&value2=20181219-1722-Pull Request
    CDash URL3 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_gcc_7.2.0-65&field2=buildstamp&compare2=61&value2=20181219-1722-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    .................................................. Size: 150K
    .................................................. Size: 200K
    .................................................. Size: 250K
    ......................... Size of output: 274K
    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: 449K
    .................................................. Size: 499K
    .................................................. Size: 549K
    .................................................. Size: 599K
    .................................................. Size: 649K
    .................................................. Size: 699K
    .................................................. Size: 749K
    .................................................. Size: 799K
    .................................................. Size: 849K
    .................................................. Size: 900K
    .................................................. Size: 949K
    .................................................. Size: 999K
    .................................................. Size: 1049K
    .................................................. Size: 1099K
    .................................................. Size: 1149K
    .................................................. Size: 1199K
    .................................................. Size: 1249K
    .................................................. Size: 1299K
    .................................................. Size: 1349K
    .................................................. Size: 1400K
    .................................................. Size: 1449K
    .................................................. Size: 1499K
    .................................................. Size: 1549K
    .................................................. Size: 1600K
    .................................................. Size: 1650K
    .................................................. Size: 1699K
    .................................................. Size: 1749K
    .................................................. Size: 1800K
    .................................................. Size: 1849K
    .................................................. Size: 1899K
    .................................................. Size: 1949K
    ................................. Size of output: 1983K
    Build succeeded.
    build submit error = 0
    Starting testing step.
    Tests succeeded.
    test submit error = 0
    File upload submit error = 0
    Archiving artifacts
    Finished: SUCCESS


CDash Test Results for PR# 4089.


Wiki: How to Reproduce PR Testing Builds and Errors.

@william76
Copy link
Contributor Author

@mhoemmen I updated the typedefs in the test file and pushed the change. :)

@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_4.8.4

  • Build Num: 2165
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA bc8ed7f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 1968
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA bc8ed7f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 455
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA bc8ed7f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 66
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA bc8ed7f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Using Repos:

Repo: TRILINOS (william76/Trilinos)
  • Branch: Tpetra-CrsGraph-Swap-TestCleanup
  • SHA: bc8ed7f
  • Mode: TEST_REPO

Pull Request Author: william76

mhoemmen
mhoemmen previously approved these changes Dec 19, 2018
Copy link
Contributor

@mhoemmen mhoemmen left a comment

Choose a reason for hiding this comment

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

Thanks! Please see comments :-)

pair_edge_t(3, 1), pair_edge_t(7, 5), pair_edge_t(10, 4) };
vec_owners = {pair_owner_t(0, 0), pair_owner_t(1, 0), pair_owner_t(3, 1), pair_owner_t(7, 1),
pair_owner_t(10, 1)};
vec_edges = {pair_edge_type(0, 0), pair_edge_type(0, 11), pair_edge_type(1, 7), pair_edge_type(1, 8),
Copy link
Contributor

Choose a reason for hiding this comment

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

I like these typedefs btw :-D

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Error: Jenkins Jobs - A user has commited a change to the PR before testing completed. The original testing SHA = bc8ed7f Does not match the current commit SHA = 0c18205. The Jenkins Jobs will be shutdown; Testing of this PR must occur again.

@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_4.8.4

  • Build Num: 2165
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA bc8ed7f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 1968
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA bc8ed7f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 455
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA bc8ed7f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 66
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA bc8ed7f
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 2165 (click to expand)

git diff --name-only origin/develop..HEAD > /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4

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

CHANGED_PACKAGES_FULL_LIST='TpetraCore'

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

CHANGED_PACKAGES_PT_LIST='TpetraCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_TpetraCore = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
    Build name = PR-4089-test-Trilinos_pullrequest_gcc_4.8.4-2165
    Cur dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
    Source dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
    Binary dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test
    Parallel level = 18
    skip_by_parts_submit = OFF
    skip_single_submit = ON
    skip_update_step = ON
    skip_upload_config_files = OFF
    skip_clean_build_dir = OFF
    Subproject count = 53
    Dashboard model = Experimental
    Dashboard track = Pull Request
    Running configuration:
    /projects/sems/install/rhel6-x86_64/atdm/binary-install/cmake-3.11.1-Linux-x86_64/bin/cmake
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake"
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/packageEnables.cmake"
    -DTrilinos_ENABLE_TESTS:BOOL=ON
    -G "Ninja"
    /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
    CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
    CDash URL1 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic142&field2=buildname&compare2=61&value2=PR-4089-test-Trilinos_pullrequest_gcc_4.8.4-2165&field3=buildstamp&compare3=61&value3=20181219-1937-Pull Request
    CDash URL2 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_gcc_4.8.4-2165&field2=buildstamp&compare2=61&value2=20181219-1937-Pull Request
    CDash URL3 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_gcc_4.8.4-2165&field2=buildstamp&compare2=61&value2=20181219-1937-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    .................................................. Size: 150K
    .................................................. Size: 200K
    .................................................. Size: 250K
    ........................... Size of output: 276K
    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: 449K
    .................................................. Size: 500K
    .................................................. Size: 549K
    .................................................. Size: 599K
    .................................................. Size: 649K
    .................................................. Size: 699K
    .................................................. Size: 749K
    .................................................. Size: 799K
    .................................................. Size: 849K
    .................................................. Size: 899K
    .................................................. Size: 949K
    .................................................. Size: 999K
    .................................................. Size: 1050K
    .................................................. Size: 1099K
    .................................................. Size: 1149K
    .................................................. Size: 1199K
    .................................................. Size: 1249K
    .................................................. Size: 1299K
    .................................................. Size: 1349K
    .................................................. Size: 1399K
    .................................................. Size: 1449K
    .................................................. Size: 1500K
    .................................................. Size: 1550K
    .................................................. Size: 1600K
    .................................................. Size: 1649K
    .................................................. Size: 1699K
    . Size of output: 1701K
    Build succeeded.
    build submit error = 0
    Starting testing step.
    Tests succeeded.
    test submit error = 0
    File upload submit error = 0
    Archiving artifacts
    Finished: SUCCESS
Console Output (last 100 lines) : Trilinos_pullrequest_intel_17.0.1 # 1968 (click to expand)

*** git commit origin/develop to HEAD
***

TRILINOS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
TRIBITS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/tribits

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

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

git diff --name-only origin/develop..HEAD > /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/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='TpetraCore'

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

CHANGED_PACKAGES_PT_LIST='TpetraCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_TpetraCore = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
    Build name = PR-4089-test-Trilinos_pullrequest_intel_17.0.1-1968
    Cur dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
    Source dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
    Binary dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test
    Parallel level = 18
    skip_by_parts_submit = OFF
    skip_single_submit = ON
    skip_update_step = ON
    skip_upload_config_files = OFF
    skip_clean_build_dir = OFF
    Subproject count = 53
    Dashboard model = Experimental
    Dashboard track = Pull Request
    Running configuration:
    /projects/sems/install/rhel6-x86_64/atdm/binary-install/cmake-3.11.1-Linux-x86_64/bin/cmake
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntelTestingSettings.cmake"
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/packageEnables.cmake"
    -DTrilinos_ENABLE_TESTS:BOOL=ON
    -G "Ninja"
    /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
    CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
    CDash URL1 = https://testing-vm.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-4089-test-Trilinos_pullrequest_intel_17.0.1-1968&field3=buildstamp&compare3=61&value3=20181219-1937-Pull Request
    CDash URL2 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_intel_17.0.1-1968&field2=buildstamp&compare2=61&value2=20181219-1937-Pull Request
    CDash URL3 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_intel_17.0.1-1968&field2=buildstamp&compare2=61&value2=20181219-1937-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    .................................................. Size: 150K
    .................................................. Size: 200K
    .................................................. Size: 250K
    ......................... Size of output: 274K
    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: 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
    ......................................Build was aborted
    Aborted by James M Willenbring
    Archiving artifacts
    Finished: ABORTED
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.9.3_SERIAL # 455 (click to expand)

B) Get the set of changed files

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL

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

CHANGED_PACKAGES_FULL_LIST='TpetraCore'

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

CHANGED_PACKAGES_PT_LIST='TpetraCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_TpetraCore = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
    Build name = PR-4089-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-455
    Cur dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
    Source dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
    Binary dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test
    Parallel level = 18
    skip_by_parts_submit = OFF
    skip_single_submit = ON
    skip_update_step = ON
    skip_upload_config_files = OFF
    skip_clean_build_dir = OFF
    Subproject count = 53
    Dashboard model = Experimental
    Dashboard track = Pull Request
    Running configuration:
    /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin/cmake
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxGCC4.9.3TestingSettingsSERIAL.cmake"
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/packageEnables.cmake"
    -DTrilinos_ENABLE_TESTS:BOOL=ON
    -G "Ninja"
    /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
    CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
    CDash URL1 = https://testing-vm.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-4089-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-455&field3=buildstamp&compare3=61&value3=20181219-1938-Pull Request
    CDash URL2 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-455&field2=buildstamp&compare2=61&value2=20181219-1938-Pull Request
    CDash URL3 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-455&field2=buildstamp&compare2=61&value2=20181219-1938-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    .................................................. Size: 150K
    .................................................. Size: 200K
    .................................................. Size: 250K
    .............. Size of output: 263K
    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: 350K
    .................................................. 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: 1150K
    .................................................. Size: 1199K
    .................................................. Size: 1249K
    .................................................. Size: 1299K
    .................................................. Size: 1349K
    .................................................. Size: 1399K
    .................................................. Size: 1449K
    .................................................. Size: 1499K
    ............. Size of output: 1513K
    Build succeeded.
    build submit error = 0
    Starting testing step.
    Tests succeeded.
    test submit error = 0
    File upload submit error = 0
    Archiving artifacts
    Finished: SUCCESS
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_7.2.0 # 66 (click to expand)

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

CHANGED_PACKAGES_FULL_LIST='TpetraCore'

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

CHANGED_PACKAGES_PT_LIST='TpetraCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_TpetraCore = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
    Build name = PR-4089-test-Trilinos_pullrequest_gcc_7.2.0-66
    Cur dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype
    Source dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos
    Binary dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test
    Parallel level = 18
    skip_by_parts_submit = OFF
    skip_single_submit = ON
    skip_update_step = ON
    skip_upload_config_files = OFF
    skip_clean_build_dir = OFF
    Subproject count = 53
    Dashboard model = Experimental
    Dashboard track = Pull Request
    Running configuration:
    /projects/sems/install/rhel6-x86_64/atdm/binary-install/cmake-3.11.1-Linux-x86_64/bin/cmake
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0TestingSettings.cmake"
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/packageEnables.cmake"
    -DTrilinos_ENABLE_TESTS:BOOL=ON
    -G "Ninja"
    /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/Trilinos
    CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
    CDash URL1 = https://testing-vm.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-4089-test-Trilinos_pullrequest_gcc_7.2.0-66&field3=buildstamp&compare3=61&value3=20181219-1937-Pull Request
    CDash URL2 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_gcc_7.2.0-66&field2=buildstamp&compare2=61&value2=20181219-1937-Pull Request
    CDash URL3 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_gcc_7.2.0-66&field2=buildstamp&compare2=61&value2=20181219-1937-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    .................................................. Size: 150K
    .................................................. Size: 200K
    .................................................. Size: 250K
    ......................... Size of output: 274K
    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: 449K
    .................................................. Size: 500K
    .................................................. Size: 549K
    .................................................. Size: 599K
    .................................................. Size: 649K
    .................................................. Size: 699K
    .................................................. Size: 749K
    .................................................. Size: 799K
    .................................................. Size: 849K
    .................................................. Size: 899K
    .................................................. Size: 950K
    .................................................. Size: 999K
    .................................................. Size: 1049K
    .................................................. Size: 1099K
    .................................................. Size: 1149K
    .................................................. Size: 1199K
    .................................................. Size: 1249K
    .................................................. Size: 1300K
    .................................................. Size: 1349K
    .................................................. Size: 1400K
    .................................................. Size: 1450K
    .................................................. Size: 1499K
    .................................................. Size: 1549K
    .................................................. Size: 1600K
    .................................................. Size: 1649K
    .................................................. Size: 1699K
    .................................................. Size: 1750K
    .................................................. Size: 1799K
    .................................................. Size: 1849K
    .................................................. Size: 1899K
    .................................................. Size: 1949K
    ................................. Size of output: 1983K
    Build succeeded.
    build submit error = 0
    Starting testing step.
    Tests succeeded.
    test submit error = 0
    File upload submit error = 0
    Archiving artifacts
    Finished: SUCCESS


CDash Test Results for PR# 4089.


Wiki: How to Reproduce PR Testing Builds and Errors.

@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_4.8.4

  • Build Num: 2167
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 0c18205
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 1970
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 0c18205
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 457
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 0c18205
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 68
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 0c18205
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Using Repos:

Repo: TRILINOS (william76/Trilinos)
  • Branch: Tpetra-CrsGraph-Swap-TestCleanup
  • SHA: 0c18205
  • Mode: TEST_REPO

Pull Request Author: william76

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - Error: Jenkins Jobs - A user has commited a change to the PR before testing completed. The original testing SHA = 0c18205 Does not match the current commit SHA = 039aef0. The Jenkins Jobs will be shutdown; Testing of this PR must occur again.

@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_4.8.4

  • Build Num: 2167
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 0c18205
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 1970
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 0c18205
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 457
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 0c18205
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 68
  • Status: ERROR

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 0c18205
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 2167 (click to expand)

+ env TRILINOS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4@2/Trilinos TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4@2/Trilinos /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4@2/Trilinos/commonTools/framework/get-changed-trilinos-packages.sh origin/develop HEAD packageEnables.cmake

*** Generating set of Trilinos enables given modified packages from
*** git commit origin/develop to HEAD


TRILINOS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4@2/Trilinos
TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4@2/Trilinos
TRIBITS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4@2/Trilinos/cmake/tribits

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4@2/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4@2/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4@2

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

CHANGED_PACKAGES_FULL_LIST='TpetraCore'

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

CHANGED_PACKAGES_PT_LIST='TpetraCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_TpetraCore = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4@2/TFW_testing_single_configure_prototype
    Build name = PR-4089-test-Trilinos_pullrequest_gcc_4.8.4-2167
    Cur dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4@2/TFW_testing_single_configure_prototype
    Source dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4@2/Trilinos
    Binary dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4@2/pull_request_test
    Parallel level = 18
    skip_by_parts_submit = OFF
    skip_single_submit = ON
    skip_update_step = ON
    skip_upload_config_files = OFF
    skip_clean_build_dir = OFF
    Subproject count = 53
    Dashboard model = Experimental
    Dashboard track = Pull Request
    Running configuration:
    /projects/sems/install/rhel6-x86_64/atdm/binary-install/cmake-3.11.1-Linux-x86_64/bin/cmake
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4@2/Trilinos/cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake"
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4@2/packageEnables.cmake"
    -DTrilinos_ENABLE_TESTS:BOOL=ON
    -G "Ninja"
    /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4@2/Trilinos
    CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
    CDash URL1 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic142&field2=buildname&compare2=61&value2=PR-4089-test-Trilinos_pullrequest_gcc_4.8.4-2167&field3=buildstamp&compare3=61&value3=20181219-2248-Pull Request
    CDash URL2 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_gcc_4.8.4-2167&field2=buildstamp&compare2=61&value2=20181219-2248-Pull Request
    CDash URL3 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_gcc_4.8.4-2167&field2=buildstamp&compare2=61&value2=20181219-2248-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    .................................................. Size: 150K
    .................................................. Size: 200K
    .................................................. Size: 250K
    ........................... Size of output: 276K
    configure submit error = 0
    Configure suceeded.
    Starting build step.
    Each symbol represents 1024 bytes of output.
    .................................................. Size: 49K
    .................................................. Size: 99K
    .................................................. Size: 149K
    .................................................. Size: 200K
    .................................................. Size: 249K
    .................................................. Size: 299K
    .................................................. 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: 1050K
    .................................................. Size: 1099K
    .................................................. Size: 1149K
    .................................................. Size: 1199K
    ..........................................
Console Output (last 100 lines) : Trilinos_pullrequest_intel_17.0.1 # 1970 (click to expand)

MPI type = sems-mpich/3.2
CDash Track = Pull Request
pwd: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
+ env TRILINOS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/commonTools/framework/get-changed-trilinos-packages.sh origin/develop HEAD packageEnables.cmake

*** Generating set of Trilinos enables given modified packages from
*** git commit origin/develop to HEAD


TRILINOS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
TRIBITS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/tribits

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

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

git diff --name-only origin/develop..HEAD > /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/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='TpetraCore'

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

CHANGED_PACKAGES_PT_LIST='TpetraCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.9.3_SERIAL # 457 (click to expand)

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL

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

CHANGED_PACKAGES_FULL_LIST='TpetraCore'

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

CHANGED_PACKAGES_PT_LIST='TpetraCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_TpetraCore = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
    Build name = PR-4089-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-457
    Cur dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
    Source dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
    Binary dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test
    Parallel level = 18
    skip_by_parts_submit = OFF
    skip_single_submit = ON
    skip_update_step = ON
    skip_upload_config_files = OFF
    skip_clean_build_dir = OFF
    Subproject count = 53
    Dashboard model = Experimental
    Dashboard track = Pull Request
    Running configuration:
    /projects/sems/install/rhel6-x86_64/atdm/binary-install/cmake-3.11.1-Linux-x86_64/bin/cmake
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxGCC4.9.3TestingSettingsSERIAL.cmake"
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/packageEnables.cmake"
    -DTrilinos_ENABLE_TESTS:BOOL=ON
    -G "Ninja"
    /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
    CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
    CDash URL1 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic115&field2=buildname&compare2=61&value2=PR-4089-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-457&field3=buildstamp&compare3=61&value3=20181219-2249-Pull Request
    CDash URL2 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-457&field2=buildstamp&compare2=61&value2=20181219-2249-Pull Request
    CDash URL3 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-457&field2=buildstamp&compare2=61&value2=20181219-2249-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    .................................................. Size: 150K
    .................................................. Size: 200K
    .................................................. Size: 250K
    .............. Size of output: 263K
    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: 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
    ........Build was aborted
    Aborted by James M Willenbring
    Archiving artifacts
    Finished: ABORTED
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_7.2.0 # 68 (click to expand)

git diff --name-only origin/develop..HEAD > /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0@2/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0@2

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

CHANGED_PACKAGES_FULL_LIST='TpetraCore'

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

CHANGED_PACKAGES_PT_LIST='TpetraCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_TpetraCore = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0@2/TFW_testing_single_configure_prototype
    Build name = PR-4089-test-Trilinos_pullrequest_gcc_7.2.0-68
    Cur dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0@2/TFW_testing_single_configure_prototype
    Source dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0@2/Trilinos
    Binary dir = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0@2/pull_request_test
    Parallel level = 18
    skip_by_parts_submit = OFF
    skip_single_submit = ON
    skip_update_step = ON
    skip_upload_config_files = OFF
    skip_clean_build_dir = OFF
    Subproject count = 53
    Dashboard model = Experimental
    Dashboard track = Pull Request
    Running configuration:
    /projects/sems/install/rhel6-x86_64/atdm/binary-install/cmake-3.11.1-Linux-x86_64/bin/cmake
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0@2/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0TestingSettings.cmake"
    -C "/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0@2/packageEnables.cmake"
    -DTrilinos_ENABLE_TESTS:BOOL=ON
    -G "Ninja"
    /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0@2/Trilinos
    CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
    CDash URL1 = https://testing-vm.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-4089-test-Trilinos_pullrequest_gcc_7.2.0-68&field3=buildstamp&compare3=61&value3=20181219-2249-Pull Request
    CDash URL2 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_gcc_7.2.0-68&field2=buildstamp&compare2=61&value2=20181219-2249-Pull Request
    CDash URL3 = https://testing-vm.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-4089-test-Trilinos_pullrequest_gcc_7.2.0-68&field2=buildstamp&compare2=61&value2=20181219-2249-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    .................................................. Size: 150K
    .................................................. Size: 200K
    .................................................. Size: 250K
    .......................... Size of output: 275K
    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: 400K
    .................................................. Size: 449K
    .................................................. Size: 500K
    .................................................. Size: 549K
    .................................................. Size: 599K
    .................................................. Size: 649K
    .................................................. Size: 699K
    .................................................. Size: 749K
    .................................................. Size: 799K
    .................................................. Size: 850K
    .................................................. Size: 899K
    .................................................. Size: 949K
    .................................................. Size: 999K
    .................................................. Size: 1049K
    .................................................. Size: 1099K
    .................................................. Size: 1150K
    .................................................. Size: 1199K
    .................................................. Size: 1249K
    .................................................. Size: 1300K
    .................................................. Size: 1350K
    .................................................. Size: 1400K
    .................................................. Size: 1450K
    .................................................. Size: 1499K
    .................................................. Size: 1550K
    .................................................. Size: 1599K
    .................................................. Size: 1649K
    .................................................. Size: 1699K
    .................................................. Size: 1749K
    .................................................. Size: 1799K
    .................................................. Size: 1849K
    .................................................. Size: 1899K
    .................................................. Size: 1949K
    ....................................Build was aborted
    Aborted by James M Willenbring
    Archiving artifacts


CDash Test Results for PR# 4089.


Wiki: How to Reproduce PR Testing Builds and Errors.

@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_4.8.4

  • Build Num: 2168
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 039aef0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 1971
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 039aef0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 458
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 039aef0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 69
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 039aef0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Using Repos:

Repo: TRILINOS (william76/Trilinos)
  • Branch: Tpetra-CrsGraph-Swap-TestCleanup
  • SHA: 039aef0
  • Mode: TEST_REPO

Pull Request Author: william76

@william76
Copy link
Contributor Author

ok, I think I got the little tweaks and style fixes sorted out... unless something is glaringly wrong, I don't think I'll update this PR again before it's merged on in.

Requesting a review from someone on the @trilinos/tpetra team :)

const bool do_fillComplete=true)
template<class LO, class GO, class Node>
Teuchos::RCP<Tpetra::CrsGraph<LO, GO, Node> >
generate_crsgraph(Teuchos::RCP<Teuchos::Comm<int> >& comm,
Copy link
Contributor

Choose a reason for hiding this comment

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

Argh i forgot one thing: this should be Teuchos::RCP<const Teuchos::Comm<int>>. But if it compiles and passes the test, don't worry about it for now.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@mhoemmen just to clarify, the only change here would be to make this a const, right?

That's easy enough to do and probably best to just do today before I forget about it over the break. I can throw that in and shoot off a new PR for it.

Copy link
Contributor Author

@william76 william76 Dec 20, 2018

Choose a reason for hiding this comment

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

@mhoemmen I made this change and put it into PR #4120 when you get a chance, do you mind giving it a look and checking the box :)

{
std::cout << "p=0 | gbl_row : " << p.first << " (" << p.second.size() << ") ";
for(auto& j: p.second)
std::cout << "p=0 | gbl_num_rows: " << gbl_rows.size() << std::endl;
Copy link
Contributor

Choose a reason for hiding this comment

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

@william76 I'm just suggesting this as a later thing to think about, after this PR is done :-D Thanks though!

@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_4.8.4

  • Build Num: 2168
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.8.4
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 039aef0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 1971
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 039aef0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 458
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 039aef0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 69
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4089
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Tpetra-CrsGraph-Swap-TestCleanup
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 039aef0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA b0fd3c1


CDash Test Results for PR# 4089.

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester trilinos-autotester merged commit 8fb6691 into trilinos:develop Dec 20, 2018
@trilinos-autotester
Copy link
Contributor

Merge on Pull Request# 4089: 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 Dec 20, 2018
@bartlettroscoe bartlettroscoe removed the stage: in progress Work on the issue has started label Dec 20, 2018
@william76 william76 deleted the Tpetra-CrsGraph-Swap-TestCleanup branch December 20, 2018 15:58
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.

None yet

4 participants