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

Issue4258 remove teuchos sdmatrix inheritance #4259

Conversation

rhoope
Copy link
Contributor

@rhoope rhoope commented Jan 24, 2019

@trilinos/ (Several affected)

Description

See Issue #4258 for details

Motivation and Context

Closes Issue #4258

How Has This Been Tested?

Yes, using GCC 4.8.4 PR setup with Teuchos enabledand HDF5 disabled (includes all forward and optional packages affected).

Checklist

  • [x ] My commit messages mention the appropriate GitHub issue numbers.
  • [x ] My code follows the code style of the affected package(s).
  • [? ] My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • [ x] I have read the code contribution guidelines for this project.
  • I have added tests to cover my changes.
  • All new and existing tests passed.
  • No new compiler warnings were introduced.
  • [ X] These changes break backwards compatibility.

…rom Object)

From Mike Eldred:

    This patch removes Teuchos::Object from inheritance chains in all Teuchos::
    SerialDense* classes.  This has two primary effects:
    1) eliminates overhead from the Teuchos::Object data attributes, especially
       the std::string label_.
    2) removes the operator<< (std::ostream& os, const Teuchos::Object& obj) that
       has caused problems for us defining our own operators for Teuchos types.

    *** Important note: the latter change may induce requirements on client code,
    *** if they were reliant on this ostream operator.  For Dakota, this is a good
    *** thing as it provides the opportunity to replace an inconsistently formatted
    *** operator (that has previously been in the way) with a tailored one.
…rom Object)

 - fix client code in Trilinos needed to remove SerialDense matrix inheritance
   Teuchos::Object

These were identified and fixed using the GCC 4.8.4 PR test setup in
cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake with Teuchos
explicitly enabled and the HDF5 TPL disabled.
@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Test Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging
WARNING: NO REVIEWERS HAVE BEEN REQUESTED FOR THIS PULL REQUEST!

@mhoemmen
Copy link
Contributor

@trilinos/teuchos

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.

It seems like we could do this in a better way, without needing to change so much code. Why not just implement operator<<(std::ostream&, const Teuchos::SerialDenseMatrix<Scalar>&)? Then you wouldn't have to change any downstream code.

TEUCHOS_TEST_FOR_EXCEPTION(info != 0,std::runtime_error,
"New <Y1,X1> not s.p.d.: couldn't computed Cholesky: info == " << info
<< "\nyTx1: \n" << yTx1);
std::ostringstream msg("New <Y1,X1> not s.p.d.: couldn't computed Cholesky: info == ");
Copy link
Contributor

Choose a reason for hiding this comment

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

Hm, I'd rather not build the std::ostringstream each time if we only use it when info is nonzero. How about this?

if (info != 0) {
  // build the std::ostringstream
  yTx1.print (msg);
  TEUCHOS_TEST_FOR_EXCEPTION(true, std::runtime_error, msg); 
}

Copy link
Contributor

Choose a reason for hiding this comment

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

I realize now that the above code is in a test, so I'm less worried about it.

TEUCHOS_TEST_FOR_EXCEPTION(info != 0,std::runtime_error,
"New <Y2,X2> not s.p.d.: couldn't computed Cholesky: info == " << info
<< "\nyTx2: \n" << yTx2);
msg.str("New <Y2,X2> not s.p.d.: couldn't computed Cholesky: info == ");
Copy link
Contributor

Choose a reason for hiding this comment

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

See above.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I believe the suggestion to implement the operator<< is exactly what Mike did in Dakota. If I added one for Teuchos::SerialDenseMatrix&, that would remove the need to touch the other Trilinos packages but in a way that has proven overly prescriptive for Dakota. Is there a more attractive approach, eg a virtual operator<< ?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Also, is there a way to add Mike (Eldred) as a watcher of this PR?

Copy link
Contributor

Choose a reason for hiding this comment

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

@rhoope You could just do an @-mention of this GitHub account name here. That should notify him.

Copy link
Contributor

@mhoemmen mhoemmen Jan 24, 2019

Choose a reason for hiding this comment

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

@rhoope wrote:

Is there a more attractive approach, e.g., a virtual operator<< ?

Is the issue that you would like Dakota to be able to override any existing print behavior of Teuchos::SerialDenseMatrix, but still be able to use operator<< everywhere?

It's hard to do that when using an operator. Argument-dependent lookup means that you can't use the same input types (std::ostream&, const SDM&) and still get a different operator<<. However, you could achieve this effect in Dakota with a little wrapper that changes SDM into a different type. This is analogous to "function advising" in some other languages. Here is an example:

// Implementation detail; not for users
template<class OrdinalType, class ScalarType>
struct SerialDenseMatrixOutputWrapper {
  const SerialDenseMatrix<OrdinalType, ScalarType>& A;
};

// this is for Dakota developers
template<class OrdinalType, class ScalarType>
SerialDenseMatrixOutputWrapper<OrdinalType, ScalarType>
wrapSDM (const SerialDenseMatrix<OrdinalType, ScalarType>& A)
{
  return {A};
}

// Dakota would define this
template<class OrdinalType, class ScalarType>
std::ostream& operator<< (std::ostream& out, const SerialDenseMatrixOutputWrapper<OrdinalType, ScalarType>& A)
{
  // ... print A however Dakota likes to print it ...
  return out;
}

You would use the class this way:

SerialDenseMatrix<int, double> A ( /* whatever goes here */ );
// ... do stuff with A ...

std::cout << wrapSDM (A) << 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.

@mseldre wrote:

Simply dropping the inheritance from Object nicely accomplishes that, and we noticed your comments in the base about the need to deprecate and retire this legacy code.

I very much appreciate your contributions here -- thanks!

This clash was historical and may have been due to "using namespace Teuchos" pollution somewhere in the header dependencies -- not sure.

Argument-dependent lookup (ADL) would normally pick up Teuchos::operator<<, since it is in the same namespace as one of its arguments. ADL would not normally pick up an overloaded Dakota::operator<<, even inside code in the Dakota namespace. This is true even without using namespace Teuchos; etc.

So my recommendation would be to delete Object and allow Teuchos clients to provide their own customized insertion/extraction operators.

I'm OK with this personally, but it does break backwards compatibility for downstream applications. It's very likely that you won't be able to test all possible combinations of build options even within Trilinos, so this may break some Trilinos packages. It may also break downstream apps.

Trilinos hasn't had an official minor release (!) since 12.12, around three years ago (!!!). This means that all bets are off in terms of deprecation and removal policy. (Feel free to express your opinions about that to @maherou. I have no control over it.) Lack of policy mainly just means that you'll have to manage the angry-grams from various apps if their builds break. If you're OK with that, we can merge this and file a separate issue where you will be listed as the point of contact for explaining how to work around any build issues that arise. It's no big deal, but I just want to make sure we document why we did this, that it does break backwards compatibility, and how to fix it. Is that OK?

Copy link

Choose a reason for hiding this comment

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

Thanks for the pointer about ADL -- that explains what I was observing and, IMO, also strengthens the argument for not providing these operators.

I can't speak to internal Trilinos policy for deprecation or release management, but seems there needs to be some mechanism to move forward. From the Dakota side, we would of course like to see our local changes to Teuchos propagate upstream so that users can build with either our version or their own custom version of Trilinos, with minimal/no inconsistencies. I am fine with delaying this patch until the appropriate time when deprecations can be announced and managed -- in the meantime, we can get by with our local version. In terms of being the POC for Trilinos angry-grams, yes if that's necessary in the short term.

On a semi-related note, I was also eyeing the CompObject data that appears to go unused by SerialDense*. I added some (redundant) protection around the computation of FLOP increments since the flop accumulator that accepts them seems to always be NULL based on ctor initializers. It would be easy to manage ctor paths with and without meaningful FLOP counters, but it seems to currently be an afterthought. Am I missing context?

Copy link
Contributor

Choose a reason for hiding this comment

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

@mseldre Thanks for the reply! In brief, I would say, go for it! :-D (Ditto for the CompObject changes, though please in a separate PR :-) .) If you're OK with getting a few questions about how to fix build errors, I'll be happy to approve this PR.

Long answer: @ikalash, @rrdrake, @theguruat12, @micahahoward, @rppawlo, or @trilinos/framework may wish to chime in, but I would summarize the de facto "Trilinos versioning" policy for many internal applications as follows:

  1. App either forks Trilinos, or picks a Trilinos "master" branch commit.
  2. App defines its own acceptance testing for Trilinos.
  3. When an app wants to update its Trilinos, it uses acceptance tests to decide when to merge / pull. Many apps facilitate this by testing the app nightly against current master Trilinos.

This implies that apps define their own "Trilinos versions." Apps actually use this model. That, along with open access to Trilinos' repo on GitHub, likely explains the lack of enthusiasm for official Trilinos releases. I've gotten about as many complains about deprecation warnings ("hey, we can't build warning-free") as I've gotten about actual interface changes, so it's likely less effort just to break the build than it is to do an official deprecation (how long? who knows, since no official releases!).

What's missing from this model is a way for an app to work correctly with multiple Trilinos versions at once. A few packages have added this feature themselves. For example, Kokkos has a CMake option and macro to help manage deprecation. Tpetra just recently added one. It may make sense for Teuchos to add this as well, but Teuchos is a big utility package without a single focus, so it may be hard to enforce the deprecation model and decide when to remove deprecated stuff.

Anyway, I hope the long explanation helps!

Copy link

Choose a reason for hiding this comment

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

Thanks for the explanation. Approving the PR sounds good to me. Happy to help with suggestions/examples of supplying ostream insertion operators for Vector,Matrix,SymMatrix.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I just pushed some mods to make GCC 7.3.0 happy.

@mhoemmen mhoemmen added the pkg: Teuchos Issues primarily dealing with the Teuchos Package label Jan 24, 2019
@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Test Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging
THE LAST COMMIT TO THIS PULL REQUEST HAS BEEN REVIEWED, BUT NOT ACCEPTED OR REQUIRES CHANGES

@mhoemmen mhoemmen added the AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) label Jan 25, 2019
@mhoemmen mhoemmen removed the AT: WIP Causes the PR autotester to not test the PR. (Remove to allow testing to occur.) label Jan 26, 2019
mhoemmen
mhoemmen previously approved these changes Jan 26, 2019
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.

For readers just coming to this discussion: This change breaks backwards compatibility, but may improve performance. There are a couple issues remaining, though I think they are harmless:

  1. ROL does its development in a separate repository, so these changes will be clobbered on next ROL promotion. On the other hand, the ROL developers will need to pull in these changes if they want to be able to build on their next Trilinos promotion ;-) . It would be nicer if you could put the ROL changes in separate commits, but I don't want to make you jump through more hoops.

  2. Why not have print return std::ostream& instead of void? That way, you could write code like this: cout << "Matrix A: " << A.print (cout) << endl;.

@mhoemmen
Copy link
Contributor

@trilinos/rol @trilinos/anasazi @trilinos/belos

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Test 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' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 2317
  • 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 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA 32bd71b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2118
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA 32bd71b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 608
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA 32bd71b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 227
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA 32bd71b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Using Repos:

Repo: TRILINOS (rhoope/Trilinos)
  • Branch: issue4258_remove_teuchos_sdmatrix_inheritance
  • SHA: 32bd71b
  • Mode: TEST_REPO

Pull Request Author: rhoope

@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: 2317
  • 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 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA 32bd71b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2118
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA 32bd71b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 608
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA 32bd71b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 227
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA 32bd71b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 2317 (click to expand)

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_Anasazi = ON
    -- Setting Trilinos_ENABLE_Belos = ON
    -- Setting Trilinos_ENABLE_ROL = ON
    -- Setting Trilinos_ENABLE_Rythmos = ON
    -- Setting Trilinos_ENABLE_Stokhos = ON
    -- Setting Trilinos_ENABLE_Tempus = ON
    -- Setting Trilinos_ENABLE_TeuchosNumerics = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
    Build name = PR-4259-test-Trilinos_pullrequest_gcc_4.8.4-2317
    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-4259-test-Trilinos_pullrequest_gcc_4.8.4-2317&field3=buildstamp&compare3=61&value3=20190126-2221-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-4259-test-Trilinos_pullrequest_gcc_4.8.4-2317&field2=buildstamp&compare2=61&value2=20190126-2221-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-4259-test-Trilinos_pullrequest_gcc_4.8.4-2317&field2=buildstamp&compare2=61&value2=20190126-2221-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    .................................................. Size: 150K
    .................................................. Size: 200K
    .................................................. Size: 250K
    .................................................. Size: 300K
    .................................................. Size: 350K
    .................................................. Size: 400K
    Size of output: 399K
    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: 250K
    .................................................. Size: 299K
    .................................................. Size: 350K
    .................................................. Size: 399K
    .................................................. Size: 449K
    .................................................. Size: 499K
    .................................................. Size: 549K
    .................................................. Size: 600K
    .................................................. Size: 650K
    .................................................. Size: 699K
    .................................................. Size: 749K
    .................................................. Size: 799K
    .................................................. Size: 849K
    .................................................. Size: 899K
    .................................................. Size: 949K
    .................................................. Size: 999K
    .................................................. Size: 1049K
    .................................................. Size: 1099K
    .................................................. Size: 1149K
    .................................................. Size: 1199K
    .................................................. Size: 1249K
    .................................................. Size: 1299K
    .................................................. Size: 1349K
    .................................................. Size: 1399K
    .................................................. Size: 1449K
    .................................................. Size: 1499K
    .................................................. Size: 1549K
    .................................................. Size: 1599K
    .................................................. Size: 1649K
    .................................................. Size: 1700K
    .................................................. Size: 1749K
    .................................................. Size: 1799K
    .................................................. Size: 1849K
    .................................................. Size: 1899K
    .................................................. Size: 1949K
    .................................................. Size: 1999K
    .................................... Size of output: 2036K
    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 # 2118 (click to expand)

CHANGED_PACKAGES_FULL_LIST='Anasazi,Belos,ROL,Rythmos,Stokhos,Tempus,TeuchosNumerics'

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

CHANGED_PACKAGES_PT_LIST='Anasazi,Belos,ROL,Rythmos,Stokhos,Tempus,TeuchosNumerics'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_Anasazi = ON
    -- Setting Trilinos_ENABLE_Belos = ON
    -- Setting Trilinos_ENABLE_ROL = ON
    -- Setting Trilinos_ENABLE_Rythmos = ON
    -- Setting Trilinos_ENABLE_Stokhos = ON
    -- Setting Trilinos_ENABLE_Tempus = ON
    -- Setting Trilinos_ENABLE_TeuchosNumerics = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
    Build name = PR-4259-test-Trilinos_pullrequest_intel_17.0.1-2118
    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-4259-test-Trilinos_pullrequest_intel_17.0.1-2118&field3=buildstamp&compare3=61&value3=20190126-2220-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-4259-test-Trilinos_pullrequest_intel_17.0.1-2118&field2=buildstamp&compare2=61&value2=20190126-2220-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-4259-test-Trilinos_pullrequest_intel_17.0.1-2118&field2=buildstamp&compare2=61&value2=20190126-2220-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    .................................................. Size: 150K
    .................................................. Size: 200K
    .................................................. Size: 250K
    .................................................. Size: 300K
    .................................................. Size: 350K
    ................................... Size of output: 384K
    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: 1549K
    .................................................. Size: 1599K
    .................................................. Size: 1649K
    .................................................. Size: 1699K
    ........... Size of output: 1710K
    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_4.9.3_SERIAL # 608 (click to expand)

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

CHANGED_PACKAGES_PT_LIST='Anasazi,Belos,ROL,Rythmos,Stokhos,Tempus,TeuchosNumerics'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_Anasazi = ON
    -- Setting Trilinos_ENABLE_Belos = ON
    -- Setting Trilinos_ENABLE_ROL = ON
    -- Setting Trilinos_ENABLE_Rythmos = ON
    -- Setting Trilinos_ENABLE_Stokhos = ON
    -- Setting Trilinos_ENABLE_Tempus = ON
    -- Setting Trilinos_ENABLE_TeuchosNumerics = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
    Build name = PR-4259-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-608
    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-4259-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-608&field3=buildstamp&compare3=61&value3=20190126-2221-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-4259-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-608&field2=buildstamp&compare2=61&value2=20190126-2221-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-4259-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-608&field2=buildstamp&compare2=61&value2=20190126-2221-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    .................................................. Size: 150K
    .................................................. Size: 200K
    .................................................. Size: 250K
    .................................................. Size: 300K
    ........................................ Size of output: 339K
    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: 499K
    .................................................. Size: 549K
    .................................................. Size: 599K
    .................................................. Size: 649K
    .................................................. Size: 699K
    .................................................. Size: 749K
    .................................................. Size: 799K
    .................................................. Size: 849K
    .................................................. Size: 899K
    .................................................. Size: 949K
    .................................................. Size: 999K
    .................................................. Size: 1049K
    .................................................. Size: 1099K
    .................................................. Size: 1149K
    .................................................. Size: 1199K
    .................................................. Size: 1249K
    .................................................. Size: 1299K
    .................................................. Size: 1349K
    .................................................. Size: 1399K
    .................................................. Size: 1449K
    .................................................. Size: 1499K
    .................................................. Size: 1549K
    .................................................. Size: 1599K
    .................................................. Size: 1649K
    .................................................. Size: 1700K
    .................................................. Size: 1750K
    .................................................. Size: 1799K
    ... Size of output: 1803K
    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 # 227 (click to expand)

    ..................................................  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: 1299K
    ..................................................  Size: 1349K
    ..................................................  Size: 1399K
    ..................................................  Size: 1450K
    ..................................................  Size: 1500K
    ..................................................  Size: 1549K
    ..................................................  Size: 1599K
    ..................................................  Size: 1649K
    ..................................................  Size: 1699K
    ..................................................  Size: 1750K
    ..................................................  Size: 1800K
    ..................................................  Size: 1850K
    ..................................................  Size: 1900K
    ..................................................  Size: 1950K
    ..................................................  Size: 1999K
    ..................................................  Size: 2049K
    ..................................................  Size: 2099K
    ..................................................  Size: 2149K
    ..................................................  Size: 2199K
    ..................................................  Size: 2249K
    ..................................................  Size: 2299K
    ..................................................  Size: 2349K
    ..................................................  Size: 2400K
    ..................................................  Size: 2449K
    ..................................................  Size: 2499K
    ..................................................  Size: 2549K
    ..................................................  Size: 2600K
    ..................................................  Size: 2650K
    ..................................................  Size: 2699K
    ..................................................  Size: 2750K
    ..................................................  Size: 2799K
    ..................................................  Size: 2850K
    ..................................................  Size: 2900K
    ..................................................  Size: 2949K
    ..................................................  Size: 2999K
    ..................................................  Size: 3049K
    ..................................................  Size: 3099K
    ..................................................  Size: 3149K
    ..................................................  Size: 3200K
    ..................................................  Size: 3250K
    ..................................................  Size: 3299K
    ..................................................  Size: 3350K
    ..................................................  Size: 3399K
    ..................................................  Size: 3450K
    ..................................................  Size: 3499K
    ..................................................  Size: 3550K
    ..................................................  Size: 3599K
    ..................................................  Size: 3649K
    ........................................ Size of output: 3689K
Error(s) when building project
CMake Warning at /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype/simple_testing.cmake:197 (message):
  Build failed with error 1

build submit error = 0
Starting testing step.
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/OrthoManager/Anasazi_Epetra_OrthoManagerGenTester.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/OrthoManager/Anasazi_Epetra_OrthoManagerGenTester.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/IRTR/Anasazi_Epetra_IRTR_test.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/IRTR/Anasazi_Epetra_IRTR_test.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/IRTR/Anasazi_Epetra_IRTR_test.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/IRTR/Anasazi_Epetra_IRTR_test.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/IRTR/Anasazi_Epetra_IRTR_auxtest.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/IRTR/Anasazi_Epetra_IRTR_auxtest.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/IRTR/Anasazi_Epetra_IRTR_auxtest.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/IRTR/Anasazi_Epetra_IRTR_auxtest.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/IRTR/Anasazi_Epetra_IRTR_auxtest.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/Epetra64Driver/Anasazi_Epetra64_Laplacian_Driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/Epetra64Driver/Anasazi_Epetra64_Laplacian_Driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/Epetra64Driver/Anasazi_Epetra64_Laplacian_Driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/Epetra64Driver/Anasazi_Epetra64_Laplacian_Driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/thyra/test/IRTR/Anasazi_IRTRThyra_test.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/thyra/test/IRTR/Anasazi_IRTRThyra_test.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/thyra/test/IRTR/Anasazi_IRTRThyra_test.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/thyra/test/IRTR/Anasazi_IRTRThyra_test.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/tpetra/test/IRTR/Anasazi_Tpetra_IRTR_Lap_test.exe
CMake Error at /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype/simple_testing.cmake:213 (message):
Test failed with error -1

test submit error = 0
File upload submit error = 0
Single configure/build/test failed. The error code was: 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE


CDash Test Results for PR# 4259.


Wiki: How to Reproduce PR Testing Builds and Errors.

@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: 2318
  • 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 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA 32bd71b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2119
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA 32bd71b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 609
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA 32bd71b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 228
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA 32bd71b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Using Repos:

Repo: TRILINOS (rhoope/Trilinos)
  • Branch: issue4258_remove_teuchos_sdmatrix_inheritance
  • SHA: 32bd71b
  • Mode: TEST_REPO

Pull Request Author: rhoope

@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: 2318
  • 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 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA 32bd71b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2119
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA 32bd71b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 609
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA 32bd71b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 228
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA 32bd71b
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 2318 (click to expand)

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_Anasazi = ON
    -- Setting Trilinos_ENABLE_Belos = ON
    -- Setting Trilinos_ENABLE_ROL = ON
    -- Setting Trilinos_ENABLE_Rythmos = ON
    -- Setting Trilinos_ENABLE_Stokhos = ON
    -- Setting Trilinos_ENABLE_Tempus = ON
    -- Setting Trilinos_ENABLE_TeuchosNumerics = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
    Build name = PR-4259-test-Trilinos_pullrequest_gcc_4.8.4-2318
    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-4259-test-Trilinos_pullrequest_gcc_4.8.4-2318&field3=buildstamp&compare3=61&value3=20190127-0521-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-4259-test-Trilinos_pullrequest_gcc_4.8.4-2318&field2=buildstamp&compare2=61&value2=20190127-0521-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-4259-test-Trilinos_pullrequest_gcc_4.8.4-2318&field2=buildstamp&compare2=61&value2=20190127-0521-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    .................................................. Size: 150K
    .................................................. Size: 200K
    .................................................. Size: 250K
    .................................................. Size: 300K
    .................................................. Size: 350K
    .................................................. Size: 400K
    Size of output: 399K
    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: 600K
    .................................................. Size: 650K
    .................................................. Size: 699K
    .................................................. Size: 749K
    .................................................. Size: 799K
    .................................................. Size: 849K
    .................................................. Size: 899K
    .................................................. Size: 949K
    .................................................. Size: 999K
    .................................................. Size: 1049K
    .................................................. Size: 1099K
    .................................................. Size: 1149K
    .................................................. Size: 1199K
    .................................................. Size: 1249K
    .................................................. Size: 1299K
    .................................................. Size: 1349K
    .................................................. Size: 1399K
    .................................................. Size: 1449K
    .................................................. Size: 1499K
    .................................................. Size: 1549K
    .................................................. Size: 1599K
    .................................................. Size: 1649K
    .................................................. Size: 1700K
    .................................................. Size: 1749K
    .................................................. Size: 1799K
    .................................................. Size: 1849K
    .................................................. Size: 1899K
    .................................................. Size: 1949K
    .................................................. Size: 1999K
    .................................... Size of output: 2036K
    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 # 2119 (click to expand)

CHANGED_PACKAGES_FULL_LIST='Anasazi,Belos,ROL,Rythmos,Stokhos,Tempus,TeuchosNumerics'

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

CHANGED_PACKAGES_PT_LIST='Anasazi,Belos,ROL,Rythmos,Stokhos,Tempus,TeuchosNumerics'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_Anasazi = ON
    -- Setting Trilinos_ENABLE_Belos = ON
    -- Setting Trilinos_ENABLE_ROL = ON
    -- Setting Trilinos_ENABLE_Rythmos = ON
    -- Setting Trilinos_ENABLE_Stokhos = ON
    -- Setting Trilinos_ENABLE_Tempus = ON
    -- Setting Trilinos_ENABLE_TeuchosNumerics = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
    Build name = PR-4259-test-Trilinos_pullrequest_intel_17.0.1-2119
    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-4259-test-Trilinos_pullrequest_intel_17.0.1-2119&field3=buildstamp&compare3=61&value3=20190127-0521-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-4259-test-Trilinos_pullrequest_intel_17.0.1-2119&field2=buildstamp&compare2=61&value2=20190127-0521-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-4259-test-Trilinos_pullrequest_intel_17.0.1-2119&field2=buildstamp&compare2=61&value2=20190127-0521-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    .................................................. Size: 150K
    .................................................. Size: 200K
    .................................................. Size: 250K
    .................................................. Size: 300K
    .................................................. Size: 350K
    ................................... Size of output: 384K
    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: 1049K
    .................................................. Size: 1099K
    .................................................. Size: 1149K
    .................................................. Size: 1199K
    .................................................. Size: 1249K
    .................................................. Size: 1299K
    .................................................. Size: 1350K
    .................................................. Size: 1399K
    .................................................. Size: 1449K
    .................................................. Size: 1499K
    .................................................. Size: 1549K
    .................................................. Size: 1599K
    .................................................. Size: 1649K
    .................................................. Size: 1699K
    ........... Size of output: 1710K
    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_4.9.3_SERIAL # 609 (click to expand)

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

CHANGED_PACKAGES_PT_LIST='Anasazi,Belos,ROL,Rythmos,Stokhos,Tempus,TeuchosNumerics'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_Anasazi = ON
    -- Setting Trilinos_ENABLE_Belos = ON
    -- Setting Trilinos_ENABLE_ROL = ON
    -- Setting Trilinos_ENABLE_Rythmos = ON
    -- Setting Trilinos_ENABLE_Stokhos = ON
    -- Setting Trilinos_ENABLE_Tempus = ON
    -- Setting Trilinos_ENABLE_TeuchosNumerics = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
    Build name = PR-4259-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-609
    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-4259-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-609&field3=buildstamp&compare3=61&value3=20190127-0521-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-4259-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-609&field2=buildstamp&compare2=61&value2=20190127-0521-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-4259-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-609&field2=buildstamp&compare2=61&value2=20190127-0521-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    .................................................. Size: 150K
    .................................................. Size: 200K
    .................................................. Size: 250K
    .................................................. Size: 300K
    ........................................ Size of output: 339K
    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: 1450K
    .................................................. Size: 1499K
    .................................................. Size: 1549K
    .................................................. Size: 1599K
    .................................................. Size: 1649K
    .................................................. Size: 1699K
    .................................................. Size: 1750K
    .................................................. Size: 1799K
    ... Size of output: 1803K
    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 # 228 (click to expand)

    ..................................................  Size: 599K
    ..................................................  Size: 650K
    ..................................................  Size: 700K
    ..................................................  Size: 749K
    ..................................................  Size: 799K
    ..................................................  Size: 850K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ..................................................  Size: 1049K
    ..................................................  Size: 1099K
    ..................................................  Size: 1149K
    ..................................................  Size: 1199K
    ..................................................  Size: 1249K
    ..................................................  Size: 1299K
    ..................................................  Size: 1349K
    ..................................................  Size: 1399K
    ..................................................  Size: 1450K
    ..................................................  Size: 1500K
    ..................................................  Size: 1550K
    ..................................................  Size: 1600K
    ..................................................  Size: 1649K
    ..................................................  Size: 1699K
    ..................................................  Size: 1750K
    ..................................................  Size: 1800K
    ..................................................  Size: 1850K
    ..................................................  Size: 1900K
    ..................................................  Size: 1949K
    ..................................................  Size: 2000K
    ..................................................  Size: 2049K
    ..................................................  Size: 2099K
    ..................................................  Size: 2149K
    ..................................................  Size: 2199K
    ..................................................  Size: 2249K
    ..................................................  Size: 2299K
    ..................................................  Size: 2349K
    ..................................................  Size: 2399K
    ..................................................  Size: 2449K
    ..................................................  Size: 2499K
    ..................................................  Size: 2549K
    ..................................................  Size: 2600K
    ..................................................  Size: 2650K
    ..................................................  Size: 2700K
    ..................................................  Size: 2750K
    ..................................................  Size: 2799K
    ..................................................  Size: 2850K
    ..................................................  Size: 2900K
    ..................................................  Size: 2949K
    ..................................................  Size: 2999K
    ..................................................  Size: 3049K
    ..................................................  Size: 3099K
    ..................................................  Size: 3149K
    ..................................................  Size: 3200K
    ..................................................  Size: 3250K
    ..................................................  Size: 3299K
    ..................................................  Size: 3350K
    ..................................................  Size: 3399K
    ..................................................  Size: 3449K
    ..................................................  Size: 3499K
    ..................................................  Size: 3550K
    ..................................................  Size: 3599K
    ..................................................  Size: 3650K
    ........................................ Size of output: 3689K
Error(s) when building project
CMake Warning at /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype/simple_testing.cmake:197 (message):
  Build failed with error 1

build submit error = 0
Starting testing step.
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/OrthoManager/Anasazi_Epetra_OrthoManagerGenTester.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/OrthoManager/Anasazi_Epetra_OrthoManagerGenTester.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/IRTR/Anasazi_Epetra_IRTR_test.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/IRTR/Anasazi_Epetra_IRTR_test.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/IRTR/Anasazi_Epetra_IRTR_test.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/IRTR/Anasazi_Epetra_IRTR_test.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/IRTR/Anasazi_Epetra_IRTR_auxtest.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/IRTR/Anasazi_Epetra_IRTR_auxtest.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/IRTR/Anasazi_Epetra_IRTR_auxtest.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/IRTR/Anasazi_Epetra_IRTR_auxtest.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/IRTR/Anasazi_Epetra_IRTR_auxtest.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/Epetra64Driver/Anasazi_Epetra64_Laplacian_Driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/Epetra64Driver/Anasazi_Epetra64_Laplacian_Driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/Epetra64Driver/Anasazi_Epetra64_Laplacian_Driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/epetra/test/Epetra64Driver/Anasazi_Epetra64_Laplacian_Driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/thyra/test/IRTR/Anasazi_IRTRThyra_test.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/thyra/test/IRTR/Anasazi_IRTRThyra_test.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/thyra/test/IRTR/Anasazi_IRTRThyra_test.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/thyra/test/IRTR/Anasazi_IRTRThyra_test.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/pull_request_test/packages/anasazi/tpetra/test/IRTR/Anasazi_Tpetra_IRTR_Lap_test.exe
CMake Error at /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0/TFW_testing_single_configure_prototype/simple_testing.cmake:213 (message):
Test failed with error -1

test submit error = 0
File upload submit error = 0
Single configure/build/test failed. The error code was: 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE


CDash Test Results for PR# 4259.


Wiki: How to Reproduce PR Testing Builds and Errors.

@mhoemmen
Copy link
Contributor

This breaks Anasazi’s build. Not sure why your texting didn’t pick this up — maybe your script didn’t enable Anasazi.

…rom Object)

 - mods to make gcc 7.3.0 compile
@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Test Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging
THE LAST COMMIT TO THIS PULL REQUEST HAS BEEN REVIEWED, BUT NOT ACCEPTED OR REQUIRES CHANGES

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pre-Test 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' - Testing Jenkins Projects:

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 2355
  • 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 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA d630017
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2156
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA d630017
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 647
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA d630017
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 269
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA d630017
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Using Repos:

Repo: TRILINOS (rhoope/Trilinos)
  • Branch: issue4258_remove_teuchos_sdmatrix_inheritance
  • SHA: d630017
  • Mode: TEST_REPO

Pull Request Author: rhoope

@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: 2355
  • 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 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA d630017
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2156
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA d630017
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 647
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA d630017
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 269
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4259
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH issue4258_remove_teuchos_sdmatrix_inheritance
TRILINOS_SOURCE_REPO https://github.com/rhoope/Trilinos
TRILINOS_SOURCE_SHA d630017
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 3ef91e9


CDash Test Results for PR# 4259.

@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' - AutoMerge IS ENABLED, but the Label AT: AUTOMERGE is not set. Either set Label AT: AUTOMERGE or manually merge the PR...

2 similar comments
@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - AutoMerge IS ENABLED, but the Label AT: AUTOMERGE is not set. Either set Label AT: AUTOMERGE or manually merge the PR...

@trilinos-autotester
Copy link
Contributor

Status Flag 'Pull Request AutoTester' - AutoMerge IS ENABLED, but the Label AT: AUTOMERGE is not set. Either set Label AT: AUTOMERGE or manually merge the PR...

@mhoemmen mhoemmen merged commit 0c92ae2 into trilinos:develop Feb 4, 2019
@mhoemmen
Copy link
Contributor

mhoemmen commented Feb 4, 2019

Y'all have fun! 👍

@bartlettroscoe
Copy link
Member

CC: @rhoope, @mhoemmen, @mseldre

FYI: This broke SPARC. See #4330.

Can we find a way to do what Dakota wants without breaking backward compatibility?

@mseldre
Copy link

mseldre commented Feb 6, 2019

Hi Ross,
Can I ask what you were using the provided ostream insertion operator for? This operator provides a lot of debug-level output that seems most appropriate for unit testing, and is "in the way" in terms of providing a better operator due to operator precedence rules. When a similar issue arose with Anasazi (@rhoope), the better solution was to move forward and either remove the dependence on this operator or provide a better one.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
pkg: Teuchos Issues primarily dealing with the Teuchos Package
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants