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

Teuchos::{Array,ArrayView} Fix #2749 #4332

Merged
merged 1 commit into from
Feb 9, 2019
Merged

Teuchos::{Array,ArrayView} Fix #2749 #4332

merged 1 commit into from
Feb 9, 2019

Conversation

mhoemmen
Copy link
Contributor

@mhoemmen mhoemmen commented Feb 6, 2019

@trilinos/teuchos

Teuchos::Array and Teuchos::ArrayView now have a .data() method, for
compatibility with std::vector and other C++ Standard Library classes
(as of C++11), as well as Kokkos::View.

I took the liberty to use std::vector::data in the implementation of
Teuchos::Array instead of &vec[0], and to replace a few instances of 0
(in a pointer context) with nullptr. Note that the Teuchos Memory
Management Classes always return nullptr if the array length is zero;
std::vector does not promise that.

By analogy with std::shared_ptr<T[]>, I did not add a .data() method
to Teuchos::ArrayRCP. The whole point of the new methods is to
increase compatibility with the C++ Standard Library. Here is a table
of correspondences between Teuchos Memory Management Classes and C++
Standard Library classes:

Teuchos class Standard Library class
Array std::vector
ArrayView std::span (C++20 draft)
ArrayRCP std::shared_ptr<T[]>

Related Issues

@trilinos/teuchos

Teuchos::Array and Teuchos::ArrayView now have a .data() method, for
compatibility with std::vector and other C++ Standard Library classes
(as of C++11), as well as Kokkos::View.

I took the liberty to use std::vector::data in the implementation of
Teuchos::Array instead of &vec[0], and to replace a few instances of 0
with nullptr.

By analogy with std::shared_ptr<T[]>, I did _not_ add a .data() method
to Teuchos::ArrayRCP.  The whole point of the new methods is to
increase compatibility with the C++ Standard Library.  Here is a table
of correspondences between Teuchos Memory Management Classes and C++
Standard Library classes:

Teuchos class      | is like
============================================
Teuchos::Array     | std::vector
Teuchos::ArrayView | std::span (C++20 draft)
Teuchos::ArrayRCP  | std::shared_ptr<T[]>
@mhoemmen mhoemmen added the pkg: Teuchos Issues primarily dealing with the Teuchos Package label Feb 6, 2019
@mhoemmen mhoemmen self-assigned this Feb 6, 2019
@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: 2379
  • 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 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2180
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 671
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 300
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 83
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Using Repos:

Repo: TRILINOS (trilinos/Trilinos)
  • Branch: Fix-2749
  • SHA: 588fad0
  • Mode: TEST_REPO

Pull Request Author: mhoemmen

@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: 2379
  • Status: FAILED

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 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2180
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 671
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 300
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 83
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 2379 (click to expand)

Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/test/node_normals/PanzerAdaptersSTK_node_normals.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/test/face_to_elem/PanzerAdaptersSTK_tFaceToElem.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/test/local_mesh/PanzerAdaptersSTK_LocalMesh_Tests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/test/projection/PanzerAdaptersSTK_projection.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/square_mesh/PanzerAdaptersSTK_square_mesh.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/square_mesh/PanzerAdaptersSTK_square_mesh_bc.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-ioss/test/ioss_connmngr/PanzerAdaptersIOSS_tIOSSConnManager1.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-ioss/test/ioss_connmngr/PanzerAdaptersIOSS_tIOSSConnManager2.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-ioss/test/ioss_connmngr/PanzerAdaptersIOSS_tIOSSConnManager3.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Poisson_NoFE.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Poisson.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Poisson_BlockMaterials.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Poisson_BlockMaterials.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/assembly_engine/PanzerAdaptersSTK_assembly_example.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Poisson2D.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Poisson2D_p2.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Poisson2D_p2_tpetra.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/adapters-stk/example/ModelEvaluator/PanzerAdaptersSTK_me_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Maxwell.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Maxwell.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Maxwell.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/ml/NonlinML/TrilinosCouplings_ml_nox_1Delasticity_example.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Maxwell.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Maxwell.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Maxwell.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_GradDiv.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_CVFEM.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Poisson2D_pn.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Poisson2D_pn.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Poisson2D_pn.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Poisson2D_pn_tpetra.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Darcy.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_DivLSFEM.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_CurlLSFEM.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_StabilizatedADR.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/stokhos/test/UnitTest/Stokhos_KokkosViewUQPCEUnitTest_OpenMP.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/stokhos/test/UnitTest/Stokhos_KokkosCrsMatrixUQPCEUnitTest_OpenMP.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/stokhos/test/UnitTest/Stokhos_TpetraCrsMatrixUQPCEUnitTest_OpenMP.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/stokhos/test/UnitTest/Stokhos_KokkosViewMPVectorUnitTest_OpenMP.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/stokhos/test/UnitTest/Stokhos_KokkosViewFadMPVectorUnitTest_Serial.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/stokhos/test/UnitTest/Stokhos_KokkosCrsMatrixMPVectorUnitTest_OpenMP.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/stokhos/test/UnitTest/Stokhos_KokkosViewFadMPVectorUnitTest_OpenMP.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/stokhos/test/UnitTest/Stokhos_TpetraCrsMatrixMPVectorUnitTest_OpenMP.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/stokhos/test/UnitTest/Stokhos_KokkosArrayKernelsUnitTest_OpenMP.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test/packages/stokhos/test/UnitTest/Stokhos_TpetraMatVec.exe
CMake Error at /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/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

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

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='TeuchosCore'

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

CHANGED_PACKAGES_PT_LIST='TeuchosCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_TeuchosCore = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
    Build name = PR-4332-test-Trilinos_pullrequest_intel_17.0.1-2180
    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=ascic141&field2=buildname&compare2=61&value2=PR-4332-test-Trilinos_pullrequest_intel_17.0.1-2180&field3=buildstamp&compare3=61&value3=20190206-0548-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-4332-test-Trilinos_pullrequest_intel_17.0.1-2180&field2=buildstamp&compare2=61&value2=20190206-0548-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-4332-test-Trilinos_pullrequest_intel_17.0.1-2180&field2=buildstamp&compare2=61&value2=20190206-0548-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: 386K
    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: 1499K
    .................................................. Size: 1549K
    .................................................. Size: 1599K
    .................................................. Size: 1649K
    .................................................. Size: 1700K
    ....................... Size of output: 1723K
    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 # 671 (click to expand)

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='TeuchosCore'

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

CHANGED_PACKAGES_PT_LIST='TeuchosCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_TeuchosCore = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
    Build name = PR-4332-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-671
    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 = 29
    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-4332-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-671&field3=buildstamp&compare3=61&value3=20190206-0548-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-4332-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-671&field2=buildstamp&compare2=61&value2=20190206-0548-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-4332-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-671&field2=buildstamp&compare2=61&value2=20190206-0548-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: 342K
    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: 550K
    .................................................. 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: 1500K
    .................................................. Size: 1549K
    .................................................. Size: 1599K
    .................................................. Size: 1649K
    .................................................. Size: 1700K
    ........................ Size of output: 1723K
    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 # 300 (click to expand)

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=ascic141&field2=buildname&compare2=61&value2=PR-4332-test-Trilinos_pullrequest_gcc_7.2.0-300&field3=buildstamp&compare3=61&value3=20190206-0548-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-4332-test-Trilinos_pullrequest_gcc_7.2.0-300&field2=buildstamp&compare2=61&value2=20190206-0548-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-4332-test-Trilinos_pullrequest_gcc_7.2.0-300&field2=buildstamp&compare2=61&value2=20190206-0548-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: 386K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 49K
    ..................................................  Size: 99K
    ..................................................  Size: 149K
    ..................................................  Size: 199K
    ..................................................  Size: 249K
    ..................................................  Size: 300K
    ..................................................  Size: 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: 1149K
    ..................................................  Size: 1199K
    ..................................................  Size: 1250K
    ..................................................  Size: 1299K
    ..................................................  Size: 1349K
    ..................................................  Size: 1399K
    ..................................................  Size: 1449K
    ..................................................  Size: 1499K
    ..................................................  Size: 1549K
    ..................................................  Size: 1599K
    ..................................................  Size: 1649K
    ..................................................  Size: 1699K
    ..................................................  Size: 1749K
    ..................................................  Size: 1799K
    ..................................................  Size: 1849K
    ..................................................  Size: 1899K
    ..................................................  Size: 1949K
    ..................................................  Size: 2000K
    ..................................................  Size: 2050K
    ..................................................  Size: 2099K
    ..................................................  Size: 2150K
    ..................................................  Size: 2200K
    ..................................................  Size: 2250K
    ..................................................  Size: 2299K
    ..................................................  Size: 2349K
    ..................................................  Size: 2399K
    ..................................................  Size: 2450K
    ..................................................  Size: 2500K
    ..................................................  Size: 2550K
    ..................................................  Size: 2600K
    ..................................................  Size: 2650K
    ..................................................  Size: 2700K
    ..................................................  Size: 2749K
    ..................................................  Size: 2799K
    ..................................................  Size: 2849K
    ..................................................  Size: 2900K
    ..................................................  Size: 2949K
    ..................................................  Size: 2999K
    ..................................................  Size: 3049K
    ........................ Size of output: 3074K
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_cuda_9.2 # 83 (click to expand)

    ..................................................  Size: 18250K
    ..................................................  Size: 18300K
    ..................................................  Size: 18350K
    ..................................................  Size: 18399K
    ..................................................  Size: 18450K
    ..................................................  Size: 18500K
    ..................................................  Size: 18550K
    ..................................................  Size: 18600K
    ..................................................  Size: 18650K
    ..................................................  Size: 18700K
    ..................................................  Size: 18750K
    ..................................................  Size: 18800K
    ..................................................  Size: 18850K
    ..................................................  Size: 18900K
    ..................................................  Size: 18950K
    ..................................................  Size: 19000K
    ..................................................  Size: 19050K
    ..................................................  Size: 19100K
    ..................................................  Size: 19150K
    ..................................................  Size: 19199K
    ..................................................  Size: 19249K
    ..................................................  Size: 19299K
    ..................................................  Size: 19349K
    ..................................................  Size: 19399K
    ..................................................  Size: 19450K
    ..................................................  Size: 19500K
    ..................................................  Size: 19550K
    ..................................................  Size: 19600K
    ..................................................  Size: 19649K
    ..................................................  Size: 19699K
    ..................................................  Size: 19749K
    ..................................................  Size: 19799K
    ..................................................  Size: 19849K
    ..................................................  Size: 19899K
    ..................................................  Size: 19949K
    ..................................................  Size: 19999K
    ..................................................  Size: 20049K
    ..................................................  Size: 20099K
    ..................................................  Size: 20150K
    ..................................................  Size: 20200K
    ..................................................  Size: 20250K
    ..................................................  Size: 20300K
    ..................................................  Size: 20349K
    ..................................................  Size: 20400K
    ..................................................  Size: 20450K
    ..................................................  Size: 20500K
    ..................................................  Size: 20550K
    ..................................................  Size: 20600K
    ..................................................  Size: 20650K
    ..................................................  Size: 20700K
    ..................................................  Size: 20750K
    ..................................................  Size: 20800K
    ..................................................  Size: 20849K
    ..................................................  Size: 20899K
    ..................................................  Size: 20949K
    ..................................................  Size: 20999K
    ..................................................  Size: 21049K
    ..................................................  Size: 21100K
    ..................................................  Size: 21150K
    ..................................................  Size: 21200K
    ..................................................  Size: 21250K
    ..................................................  Size: 21300K
    ..................................................  Size: 21350K
    ..................................................  Size: 21400K
    ..................................................  Size: 21450K
    ..................................................  Size: 21500K
    ..................................................  Size: 21550K
    ..................................................  Size: 21600K
    ..................................................  Size: 21650K
    ..................................................  Size: 21700K
    ..................................................  Size: 21750K
    ..................................................  Size: 21800K
    ..................................................  Size: 21850K
    ..................................................  Size: 21900K
    ..................................................  Size: 21950K
    ..................................................  Size: 22000K
    ..................................................  Size: 22050K
    ..................................................  Size: 22100K
    ..................................................  Size: 22150K
    ..................................................  Size: 22200K
    ..................................................  Size: 22249K
    ..................................................  Size: 22300K
    ..................................................  Size: 22350K
    ..................................................  Size: 22399K
    ..................................................  Size: 22449K
    ..................................................  Size: 22499K
    ..................................................  Size: 22549K
    ..................................................  Size: 22600K
    ..................................................  Size: 22650K
    ..................................................  Size: 22699K
    ..................................................  Size: 22749K
    ............... Size of output: 22764K
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# 4332.


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: 2385
  • 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 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2185
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 676
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 305
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 88
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Using Repos:

Repo: TRILINOS (trilinos/Trilinos)
  • Branch: Fix-2749
  • SHA: 588fad0
  • Mode: TEST_REPO

Pull Request Author: mhoemmen

Copy link
Member

@bartlettroscoe bartlettroscoe left a comment

Choose a reason for hiding this comment

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

Just have a question about doxygen documentation and a suggestion for reducing duplication. But otherwise, this looks good.

@mhoemmen, thanks for taking the time to add all of these tests!

@@ -407,9 +407,19 @@ class Array
/** \brief Return a raw pointer to beginning of array or NULL if unsized. */
inline T* getRawPtr();

/// \brief Return a raw pointer to beginning of array.
Copy link
Member

Choose a reason for hiding this comment

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

@mhoemmen, does Doxygen render this comment correctly using ///?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@bartlettroscoe I've had success doing that with Tpetra. Thanks for asking, though!

template<class T> inline
T* ArrayView<T>::data() const
{
debug_assert_valid_ptr();
Copy link
Member

Choose a reason for hiding this comment

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

To avoid duplication, why not just inline call this->getRawPtr()?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@bartlettroscoe I wanted to keep the function call stack short so the compiler has a chance at inlining :-)

Copy link
Member

Choose a reason for hiding this comment

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

@mhoemmen said:

I wanted to keep the function call stack short so the compiler has a chance at inlining :-)

Okay, I can accept that. Performance and maintainability are often at odds. This is pretty minor duplication. But it is fragile to someone removing the call to debug_assert_valid_ptr() and there are no unit tests that ensure that data() throws in debug mode for null or invalid pointers (like dangling references). So technically, there is now a lack of testing.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@bartlettroscoe Not true -- line 353 of teuchos/core/test/MemoryManagement/ArrayView_UnitTests.cpp tests that .data() throws in debug mode on dangling reference.

Copy link
Member

Choose a reason for hiding this comment

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

Thanks! I missed that looking over the tests.

template<class T> inline
const T* ArrayView<const T>::data() const
{
debug_assert_valid_ptr();
Copy link
Member

Choose a reason for hiding this comment

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

Same deal here. To void duplication, why not just call this->getRawPtr()?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

See above.

@mhoemmen
Copy link
Contributor Author

mhoemmen commented Feb 6, 2019

Thanks Ross!

@@ -334,6 +350,7 @@ TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL( ArrayView, danglingView_rcp_std_vector, T )
}
#ifdef TEUCHOS_DEBUG
TEST_THROW(av.getRawPtr(), DanglingReferenceError);
TEST_THROW(av.data(), DanglingReferenceError);
Copy link
Contributor Author

Choose a reason for hiding this comment

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

@bartlettroscoe Here's the unit test that .data() does the same debug-mode dangling reference testing that .getRawPtr() does.

Copy link
Member

Choose a reason for hiding this comment

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

Okay, I missed that. Thanks for adding that! I think we are 100% good then.

@@ -334,6 +350,7 @@ TEUCHOS_UNIT_TEST_TEMPLATE_1_DECL( ArrayView, danglingView_rcp_std_vector, T )
}
#ifdef TEUCHOS_DEBUG
TEST_THROW(av.getRawPtr(), DanglingReferenceError);
TEST_THROW(av.data(), DanglingReferenceError);
Copy link
Member

Choose a reason for hiding this comment

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

Okay, there is the dangling reference check

Copy link
Member

Choose a reason for hiding this comment

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

But there are two data() functions (const and a non-const function). Do both get tested?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@bartlettroscoe I think only one gets tested. If you like, I can delay this PR and push another commit that fixes this.

Copy link
Member

Choose a reason for hiding this comment

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

I think only one gets tested. If you like, I can delay this PR and push another commit that fixes this.

@mhoemmen, no need for delay. I think this missing test did not show in the 100% coverage because all lines of code are covered but that does not technically guarantee full coverage of behavior.

Thanks for adding these tests.

Cross fingers the PR tester will not fail 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: 2385
  • 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 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2185
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 676
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 305
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 88
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 2385 (click to expand)

CHANGED_PACKAGES_PT_LIST='TeuchosCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_TeuchosCore = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
    Build name = PR-4332-test-Trilinos_pullrequest_gcc_4.8.4-2385
    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 = 29
    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.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=ascic166&field2=buildname&compare2=61&value2=PR-4332-test-Trilinos_pullrequest_gcc_4.8.4-2385&field3=buildstamp&compare3=61&value3=20190206-1317-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-4332-test-Trilinos_pullrequest_gcc_4.8.4-2385&field2=buildstamp&compare2=61&value2=20190206-1317-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-4332-test-Trilinos_pullrequest_gcc_4.8.4-2385&field2=buildstamp&compare2=61&value2=20190206-1317-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: 401K
    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: 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: 1749K
    .................................................. Size: 1799K
    .................................................. Size: 1849K
    .................................................. Size: 1899K
    .................................................. Size: 1949K
    .................................................. Size: 2000K
    .................................................. Size: 2049K
    .................................................. Size: 2099K
    ............................ Size of output: 2128K
    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 # 2185 (click to expand)

CHANGED_PACKAGES_FULL_LIST='TeuchosCore'

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

CHANGED_PACKAGES_PT_LIST='TeuchosCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_TeuchosCore = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
    Build name = PR-4332-test-Trilinos_pullrequest_intel_17.0.1-2185
    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 = 25
    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-4332-test-Trilinos_pullrequest_intel_17.0.1-2185&field3=buildstamp&compare3=61&value3=20190206-1317-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-4332-test-Trilinos_pullrequest_intel_17.0.1-2185&field2=buildstamp&compare2=61&value2=20190206-1317-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-4332-test-Trilinos_pullrequest_intel_17.0.1-2185&field2=buildstamp&compare2=61&value2=20190206-1317-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: 386K
    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: 849K
    .................................................. Size: 899K
    .................................................. 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: 1599K
    .................................................. Size: 1649K
    .................................................. Size: 1700K
    ....................... Size of output: 1723K
    Build succeeded.
    build submit error = 0
    Starting testing step.
    CMake Error at /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/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

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

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='TeuchosCore'

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

CHANGED_PACKAGES_PT_LIST='TeuchosCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_TeuchosCore = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
    Build name = PR-4332-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-676
    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 = 29
    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-4332-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-676&field3=buildstamp&compare3=61&value3=20190206-1319-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-4332-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-676&field2=buildstamp&compare2=61&value2=20190206-1319-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-4332-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-676&field2=buildstamp&compare2=61&value2=20190206-1319-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: 342K
    configure submit error = 0
    Configure suceeded.
    Starting build step.
    Each symbol represents 1024 bytes of output.
    .................................................. Size: 50K
    .................................................. Size: 99K
    .................................................. Size: 149K
    .................................................. Size: 199K
    .................................................. Size: 250K
    .................................................. 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: 1150K
    .................................................. Size: 1199K
    .................................................. Size: 1249K
    .................................................. Size: 1299K
    .................................................. Size: 1349K
    .................................................. Size: 1399K
    .................................................. Size: 1449K
    .................................................. Size: 1499K
    .................................................. Size: 1549K
    .................................................. Size: 1600K
    .................................................. Size: 1650K
    .................................................. Size: 1700K
    ........................ Size of output: 1723K
    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 # 305 (click to expand)

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-4332-test-Trilinos_pullrequest_gcc_7.2.0-305&field3=buildstamp&compare3=61&value3=20190206-1318-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-4332-test-Trilinos_pullrequest_gcc_7.2.0-305&field2=buildstamp&compare2=61&value2=20190206-1318-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-4332-test-Trilinos_pullrequest_gcc_7.2.0-305&field2=buildstamp&compare2=61&value2=20190206-1318-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: 386K
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: 300K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 450K
    ..................................................  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: 1699K
    ..................................................  Size: 1749K
    ..................................................  Size: 1799K
    ..................................................  Size: 1849K
    ..................................................  Size: 1900K
    ..................................................  Size: 1949K
    ..................................................  Size: 1999K
    ..................................................  Size: 2050K
    ..................................................  Size: 2099K
    ..................................................  Size: 2149K
    ..................................................  Size: 2199K
    ..................................................  Size: 2249K
    ..................................................  Size: 2299K
    ..................................................  Size: 2349K
    ..................................................  Size: 2400K
    ..................................................  Size: 2450K
    ..................................................  Size: 2500K
    ..................................................  Size: 2549K
    ..................................................  Size: 2600K
    ..................................................  Size: 2650K
    ..................................................  Size: 2699K
    ..................................................  Size: 2749K
    ..................................................  Size: 2799K
    ..................................................  Size: 2850K
    ..................................................  Size: 2899K
    ..................................................  Size: 2949K
    ..................................................  Size: 2999K
    ..................................................  Size: 3049K
    ................................... Size of output: 3085K
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_cuda_9.2 # 88 (click to expand)

    ..................................................  Size: 18249K
    ..................................................  Size: 18299K
    ..................................................  Size: 18349K
    ..................................................  Size: 18399K
    ..................................................  Size: 18449K
    ..................................................  Size: 18499K
    ..................................................  Size: 18549K
    ..................................................  Size: 18599K
    ..................................................  Size: 18649K
    ..................................................  Size: 18699K
    ..................................................  Size: 18749K
    ..................................................  Size: 18800K
    ..................................................  Size: 18849K
    ..................................................  Size: 18899K
    ..................................................  Size: 18949K
    ..................................................  Size: 18999K
    ..................................................  Size: 19049K
    ..................................................  Size: 19099K
    ..................................................  Size: 19150K
    ..................................................  Size: 19200K
    ..................................................  Size: 19250K
    ..................................................  Size: 19300K
    ..................................................  Size: 19349K
    ..................................................  Size: 19399K
    ..................................................  Size: 19449K
    ..................................................  Size: 19499K
    ..................................................  Size: 19549K
    ..................................................  Size: 19599K
    ..................................................  Size: 19649K
    ..................................................  Size: 19700K
    ..................................................  Size: 19750K
    ..................................................  Size: 19800K
    ..................................................  Size: 19850K
    ..................................................  Size: 19900K
    ..................................................  Size: 19950K
    ..................................................  Size: 20000K
    ..................................................  Size: 20050K
    ..................................................  Size: 20099K
    ..................................................  Size: 20149K
    ..................................................  Size: 20199K
    ..................................................  Size: 20249K
    ..................................................  Size: 20299K
    ..................................................  Size: 20349K
    ..................................................  Size: 20399K
    ..................................................  Size: 20449K
    ..................................................  Size: 20499K
    ..................................................  Size: 20550K
    ..................................................  Size: 20600K
    ..................................................  Size: 20650K
    ..................................................  Size: 20700K
    ..................................................  Size: 20750K
    ..................................................  Size: 20800K
    ..................................................  Size: 20850K
    ..................................................  Size: 20900K
    ..................................................  Size: 20950K
    ..................................................  Size: 21000K
    ..................................................  Size: 21050K
    ..................................................  Size: 21100K
    ..................................................  Size: 21150K
    ..................................................  Size: 21200K
    ..................................................  Size: 21250K
    ..................................................  Size: 21300K
    ..................................................  Size: 21350K
    ..................................................  Size: 21400K
    ..................................................  Size: 21450K
    ..................................................  Size: 21500K
    ..................................................  Size: 21550K
    ..................................................  Size: 21600K
    ..................................................  Size: 21650K
    ..................................................  Size: 21700K
    ..................................................  Size: 21750K
    ..................................................  Size: 21800K
    ..................................................  Size: 21850K
    ..................................................  Size: 21900K
    ..................................................  Size: 21950K
    ..................................................  Size: 22000K
    ..................................................  Size: 22050K
    ..................................................  Size: 22100K
    ..................................................  Size: 22150K
    ..................................................  Size: 22200K
    ..................................................  Size: 22249K
    ..................................................  Size: 22299K
    ..................................................  Size: 22350K
    ..................................................  Size: 22399K
    ..................................................  Size: 22450K
    ..................................................  Size: 22500K
    ..................................................  Size: 22549K
    ..................................................  Size: 22599K
    ..................................................  Size: 22650K
    ..................................................  Size: 22699K
    ..................................................  Size: 22749K
    ............... Size of output: 22764K
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# 4332.


Wiki: How to Reproduce PR Testing Builds and Errors.

@bartlettroscoe bartlettroscoe added the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Feb 6, 2019
@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 2390
  • 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 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2190
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 681
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 311
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 93
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Using Repos:

Repo: TRILINOS (trilinos/Trilinos)
  • Branch: Fix-2749
  • SHA: 588fad0
  • Mode: TEST_REPO

Pull Request Author: mhoemmen

@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: 2390
  • 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 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2190
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 681
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 311
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 93
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 2390 (click to expand)

CHANGED_PACKAGES_PT_LIST='TeuchosCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_TeuchosCore = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
    Build name = PR-4332-test-Trilinos_pullrequest_gcc_4.8.4-2390
    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-4332-test-Trilinos_pullrequest_gcc_4.8.4-2390&field3=buildstamp&compare3=61&value3=20190206-2126-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-4332-test-Trilinos_pullrequest_gcc_4.8.4-2390&field2=buildstamp&compare2=61&value2=20190206-2126-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-4332-test-Trilinos_pullrequest_gcc_4.8.4-2390&field2=buildstamp&compare2=61&value2=20190206-2126-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: 401K
    configure submit error = 0
    Configure suceeded.
    Starting build step.
    Each symbol represents 1024 bytes of output.
    .................................................. Size: 49K
    .................................................. Size: 99K
    .................................................. Size: 149K
    .................................................. Size: 199K
    .................................................. Size: 249K
    .................................................. Size: 300K
    .................................................. Size: 349K
    .................................................. Size: 399K
    .................................................. Size: 449K
    .................................................. Size: 499K
    .................................................. Size: 549K
    .................................................. Size: 599K
    .................................................. Size: 649K
    .................................................. Size: 699K
    .................................................. Size: 749K
    .................................................. Size: 799K
    .................................................. Size: 849K
    .................................................. Size: 899K
    .................................................. Size: 949K
    .................................................. Size: 999K
    .................................................. Size: 1049K
    .................................................. Size: 1099K
    .................................................. Size: 1149K
    .................................................. Size: 1199K
    .................................................. Size: 1249K
    .................................................. Size: 1300K
    .................................................. Size: 1350K
    .................................................. Size: 1400K
    .................................................. Size: 1449K
    .................................................. Size: 1499K
    .................................................. Size: 1549K
    .................................................. Size: 1599K
    .................................................. Size: 1649K
    .................................................. Size: 1699K
    .................................................. Size: 1749K
    .................................................. Size: 1800K
    .................................................. Size: 1850K
    .................................................. Size: 1899K
    .................................................. Size: 1949K
    .................................................. Size: 2000K
    .................................................. Size: 2049K
    .................................................. Size: 2099K
    ............................. Size of output: 2128K
    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 # 2190 (click to expand)

Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/rol/example/PDE-OPT/nonlinear-elliptic/ROL_example_PDE-OPT_nonlinear-elliptic_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/rol/example/PDE-OPT/nonlinear-elliptic/ROL_example_PDE-OPT_nonlinear-elliptic_example_02.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/rol/example/PDE-OPT/topo-opt/poisson/ROL_example_PDE-OPT_topo-opt_poisson_example_01.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/piro/test/Piro_Epetra_MatrixFreeOperator_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/piro/test/Piro_MatrixFreeDecorator_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/piro/test/Piro_EvalModel.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/piro/test/Piro_ThyraSolver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/piro/test/Piro_AnalysisDriver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/piro/test/Piro_AnalysisDriverTpetra.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/piro/test/Piro_NOXSolver_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/piro/test/Piro_LOCASolver_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/piro/test/Piro_RythmosSolver_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/piro/test/Piro_Epetra_RythmosSolver_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/piro/test/Piro_TempusSolver_UnitTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/dof-mgr/test/dofmngr_test/PanzerDofMgr_tFieldPattern.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/dof-mgr/test/dofmngr_test/PanzerDofMgr_tGeometricAggFieldPattern.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/dof-mgr/test/dofmngr_test/PanzerDofMgr_tIntrepidFieldPattern.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/dof-mgr/test/dofmngr_test/PanzerDofMgr_tNodalFieldPattern.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/dof-mgr/test/dofmngr_test/PanzerDofMgr_tFieldAggPattern.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/dof-mgr/test/cartesian_topology/PanzerDofMgr_tCartesianDOFMgr_DynRankView.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/dof-mgr/test/cartesian_topology/PanzerDofMgr_tCartesianDOFMgr_HighOrder.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/dof-mgr/test/cartesian_topology/PanzerDofMgr_tCartesianDOFMgr_DG.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/dof-mgr/test/field_pattern/PanzerDofMgr_tGeometricAggFieldPattern2.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/dof-mgr/test/field_pattern/PanzerDofMgr_tFieldPattern2.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/dof-mgr/test/field_pattern/PanzerDofMgr_tFieldAggPattern2.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/dof-mgr/test/field_pattern/PanzerDofMgr_tFieldAggPattern_DG.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/dof-mgr/example/CartesianScaling/PanzerDofMgr_scaling.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/disc-fe/test/epetra_gatherscatter/PanzerDiscFE_tEpetraGather.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/disc-fe/test/epetra_gatherscatter/PanzerDiscFE_tEpetraScatter.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/disc-fe/test/epetra_gatherscatter/PanzerDiscFE_tEpetraScatterDirichlet.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/test/stk_interface_test/PanzerAdaptersSTK_tSingleBlockCubeHexMeshFactory.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/test/stk_interface_test/PanzerAdaptersSTK_tGhosting.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/test/stk_connmngr/PanzerAdaptersSTK_tDOFManager2_SimpleTests.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/test/assembly_engine/PanzerAdaptersSTK_assembly_engine.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/test/model_evaluator/PanzerAdaptersSTK_model_evaluator.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/test/model_evaluator/PanzerAdaptersSTK_thyra_model_evaluator.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/test/model_evaluator/PanzerAdaptersSTK_explicit_model_evaluator.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/test/solver/PanzerAdaptersSTK_solver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/test/periodic_bcs/PanzerAdaptersSTK_periodic_bcs.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/square_mesh/PanzerAdaptersSTK_square_mesh.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/square_mesh/PanzerAdaptersSTK_square_mesh_bc.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/PoissonExample/PanzerAdaptersSTK_PoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/CurlLaplacianExample/PanzerAdaptersSTK_CurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/MixedCurlLaplacianExample/PanzerAdaptersSTK_MixedCurlLaplacianExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/MixedPoissonExample/PanzerAdaptersSTK_MixedPoissonExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/PoissonInterfaceExample/PanzerAdaptersSTK_PoissonInterfaceExample.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/assembly_engine/PanzerAdaptersSTK_assembly_example.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/main_driver/PanzerAdaptersSTK_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/adapters-stk/example/ModelEvaluator/PanzerAdaptersSTK_me_main_driver.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/panzer/mini-em/example/BlockPrec/PanzerMiniEM_BlockPrec.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/trilinoscouplings/examples/ml/NonlinML/TrilinosCouplings_ml_nox_1Delasticity_example.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Maxwell.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/trilinoscouplings/examples/scaling/TrilinosCouplings_Example_Maxwell.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/stokhos/test/UnitTest/Stokhos_KokkosViewFadMPVectorUnitTest_Serial.exe
Unable to find required file: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test/packages/stokhos/test/UnitTest/Stokhos_TpetraMatVec.exe
CMake Error at /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/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

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

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='TeuchosCore'

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

CHANGED_PACKAGES_PT_LIST='TeuchosCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_TeuchosCore = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
    Build name = PR-4332-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-681
    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 = 29
    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-4332-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-681&field3=buildstamp&compare3=61&value3=20190206-2127-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-4332-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-681&field2=buildstamp&compare2=61&value2=20190206-2127-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-4332-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-681&field2=buildstamp&compare2=61&value2=20190206-2127-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: 342K
    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: 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: 1100K
    .................................................. 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: 1724K
    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 # 311 (click to expand)

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=ascic141&field2=buildname&compare2=61&value2=PR-4332-test-Trilinos_pullrequest_gcc_7.2.0-311&field3=buildstamp&compare3=61&value3=20190206-2126-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-4332-test-Trilinos_pullrequest_gcc_7.2.0-311&field2=buildstamp&compare2=61&value2=20190206-2126-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-4332-test-Trilinos_pullrequest_gcc_7.2.0-311&field2=buildstamp&compare2=61&value2=20190206-2126-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: 386K
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: 350K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  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: 1699K
    ..................................................  Size: 1749K
    ..................................................  Size: 1799K
    ..................................................  Size: 1849K
    ..................................................  Size: 1900K
    ..................................................  Size: 1950K
    ..................................................  Size: 2000K
    ..................................................  Size: 2050K
    ..................................................  Size: 2099K
    ..................................................  Size: 2149K
    ..................................................  Size: 2200K
    ..................................................  Size: 2250K
    ..................................................  Size: 2299K
    ..................................................  Size: 2349K
    ..................................................  Size: 2400K
    ..................................................  Size: 2449K
    ..................................................  Size: 2500K
    ..................................................  Size: 2550K
    ..................................................  Size: 2599K
    ..................................................  Size: 2650K
    ..................................................  Size: 2699K
    ..................................................  Size: 2749K
    ..................................................  Size: 2799K
    ..................................................  Size: 2849K
    ..................................................  Size: 2900K
    ..................................................  Size: 2949K
    ..................................................  Size: 2999K
    ..................................................  Size: 3049K
    ......................... Size of output: 3075K
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_cuda_9.2 # 93 (click to expand)

    ..................................................  Size: 18600K
    ..................................................  Size: 18650K
    ..................................................  Size: 18700K
    ..................................................  Size: 18750K
    ..................................................  Size: 18800K
    ..................................................  Size: 18850K
    ..................................................  Size: 18900K
    ..................................................  Size: 18950K
    ..................................................  Size: 19000K
    ..................................................  Size: 19049K
    ..................................................  Size: 19100K
    ..................................................  Size: 19150K
    ..................................................  Size: 19200K
    ..................................................  Size: 19250K
    ..................................................  Size: 19299K
    ..................................................  Size: 19349K
    ..................................................  Size: 19399K
    ..................................................  Size: 19450K
    ..................................................  Size: 19500K
    ..................................................  Size: 19550K
    ..................................................  Size: 19600K
    ..................................................  Size: 19650K
    ..................................................  Size: 19700K
    ..................................................  Size: 19750K
    ..................................................  Size: 19800K
    ..................................................  Size: 19850K
    ..................................................  Size: 19900K
    ..................................................  Size: 19950K
    ..................................................  Size: 19999K
    ..................................................  Size: 20049K
    ..................................................  Size: 20100K
    ..................................................  Size: 20150K
    ..................................................  Size: 20200K
    ..................................................  Size: 20250K
    ..................................................  Size: 20299K
    ..................................................  Size: 20349K
    ..................................................  Size: 20399K
    ..................................................  Size: 20449K
    ..................................................  Size: 20499K
    ..................................................  Size: 20549K
    ..................................................  Size: 20599K
    ..................................................  Size: 20650K
    ..................................................  Size: 20700K
    ..................................................  Size: 20750K
    ..................................................  Size: 20800K
    ..................................................  Size: 20850K
    ..................................................  Size: 20900K
    ..................................................  Size: 20950K
    ..................................................  Size: 21000K
    ..................................................  Size: 21050K
    ..................................................  Size: 21100K
    ..................................................  Size: 21150K
    ..................................................  Size: 21200K
    ..................................................  Size: 21250K
    ..................................................  Size: 21300K
    ..................................................  Size: 21350K
    ..................................................  Size: 21400K
    ..................................................  Size: 21450K
    ..................................................  Size: 21500K
    ..................................................  Size: 21550K
    ..................................................  Size: 21600K
    ..................................................  Size: 21650K
    ..................................................  Size: 21700K
    ..................................................  Size: 21750K
    ..................................................  Size: 21800K
    ..................................................  Size: 21850K
    ..................................................  Size: 21900K
    ..................................................  Size: 21950K
    ..................................................  Size: 22000K
    ..................................................  Size: 22050K
    ..................................................  Size: 22100K
    ..................................................  Size: 22150K
    ..................................................  Size: 22200K
    ..................................................  Size: 22250K
    ..................................................  Size: 22300K
    ..................................................  Size: 22350K
    ..................................................  Size: 22400K
    ..................................................  Size: 22450K
    ..................................................  Size: 22500K
    ..................................................  Size: 22550K
    ..................................................  Size: 22599K
    ..................................................  Size: 22650K
    ..................................................  Size: 22699K
    ..................................................  Size: 22749K
    ..................................................  Size: 22799K
    ..................................................  Size: 22849K
    ..................................................  Size: 22900K
    ..................................................  Size: 22949K
    ..................................................  Size: 23000K
    ..................................................  Size: 23050K
    ..................................................  Size: 23100K
    ............... Size of output: 23114K
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# 4332.


Wiki: How to Reproduce PR Testing Builds and Errors.

@trilinos-autotester trilinos-autotester removed the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Feb 7, 2019
@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: 2401
  • 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 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2201
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 691
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 322
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 103
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Using Repos:

Repo: TRILINOS (trilinos/Trilinos)
  • Branch: Fix-2749
  • SHA: 588fad0
  • Mode: TEST_REPO

Pull Request Author: mhoemmen

@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: 2401
  • 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 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2201
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 691
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 322
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 103
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 2401 (click to expand)

CHANGED_PACKAGES_PT_LIST='TeuchosCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_TeuchosCore = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4@2/TFW_testing_single_configure_prototype
    Build name = PR-4332-test-Trilinos_pullrequest_gcc_4.8.4-2401
    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-4332-test-Trilinos_pullrequest_gcc_4.8.4-2401&field3=buildstamp&compare3=61&value3=20190207-0447-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-4332-test-Trilinos_pullrequest_gcc_4.8.4-2401&field2=buildstamp&compare2=61&value2=20190207-0447-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-4332-test-Trilinos_pullrequest_gcc_4.8.4-2401&field2=buildstamp&compare2=61&value2=20190207-0447-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: 402K
    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
    .................................................. Size: 1549K
    .................................................. Size: 1599K
    .................................................. Size: 1649K
    .................................................. Size: 1699K
    .................................................. Size: 1749K
    .................................................. Size: 1799K
    .................................................. Size: 1850K
    .................................................. Size: 1899K
    .................................................. Size: 1949K
    .................................................. Size: 1999K
    .................................................. Size: 2049K
    .................................................. Size: 2099K
    ................................ Size of output: 2131K
    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 # 2201 (click to expand)

CMake suite maintained and supported by Kitware (kitware.com/cmake).
Currently Loaded Modulefiles:
  1) sems-env
  2) sems-git/2.10.1
  3) sems-gcc/4.9.3
  4) sems-intel/17.0.1
  5) sems-mpich/3.2
  6) sems-python/2.7.9
  7) sems-boost/1.63.0/base
  8) sems-zlib/1.2.8/base
  9) sems-hdf5/1.8.12/parallel
 10) sems-netcdf/4.4.1/exo_parallel
 11) sems-parmetis/4.0.3/parallel
 12) sems-scotch/6.0.3/nopthread_64bit_parallel
 13) sems-superlu/4.3/base
 14) sems-cmake/3.10.3
 15) atdm-env
 16) atdm-cmake/3.11.1
 17) atdm-ninja_fortran/1.7.2
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='TeuchosCore'

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

CHANGED_PACKAGES_PT_LIST='TeuchosCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

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

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

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='TeuchosCore'

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

CHANGED_PACKAGES_PT_LIST='TeuchosCore'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_TeuchosCore = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
    Build name = PR-4332-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-691
    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=ascic143&field2=buildname&compare2=61&value2=PR-4332-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-691&field3=buildstamp&compare3=61&value3=20190207-0447-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-4332-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-691&field2=buildstamp&compare2=61&value2=20190207-0447-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-4332-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-691&field2=buildstamp&compare2=61&value2=20190207-0447-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: 343K
    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: 650K
    .................................................. Size: 699K
    .................................................. Size: 750K
    .................................................. 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: 1600K
    .................................................. Size: 1649K
    .................................................. Size: 1699K
    ........................ Size of output: 1724K
    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 # 322 (click to expand)

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=ascic141&field2=buildname&compare2=61&value2=PR-4332-test-Trilinos_pullrequest_gcc_7.2.0-322&field3=buildstamp&compare3=61&value3=20190207-0447-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-4332-test-Trilinos_pullrequest_gcc_7.2.0-322&field2=buildstamp&compare2=61&value2=20190207-0447-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-4332-test-Trilinos_pullrequest_gcc_7.2.0-322&field2=buildstamp&compare2=61&value2=20190207-0447-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: 387K
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: 300K
    ..................................................  Size: 350K
    ..................................................  Size: 399K
    ..................................................  Size: 450K
    ..................................................  Size: 499K
    ..................................................  Size: 550K
    ..................................................  Size: 599K
    ..................................................  Size: 649K
    ..................................................  Size: 699K
    ..................................................  Size: 749K
    ..................................................  Size: 800K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ..................................................  Size: 1049K
    ..................................................  Size: 1099K
    ..................................................  Size: 1149K
    ..................................................  Size: 1199K
    ..................................................  Size: 1249K
    ..................................................  Size: 1300K
    ..................................................  Size: 1349K
    ..................................................  Size: 1399K
    ..................................................  Size: 1449K
    ..................................................  Size: 1499K
    ..................................................  Size: 1549K
    ..................................................  Size: 1599K
    ..................................................  Size: 1649K
    ..................................................  Size: 1699K
    ..................................................  Size: 1749K
    ..................................................  Size: 1799K
    ..................................................  Size: 1850K
    ..................................................  Size: 1900K
    ..................................................  Size: 1950K
    ..................................................  Size: 2000K
    ..................................................  Size: 2049K
    ..................................................  Size: 2099K
    ..................................................  Size: 2150K
    ..................................................  Size: 2199K
    ..................................................  Size: 2250K
    ..................................................  Size: 2299K
    ..................................................  Size: 2350K
    ..................................................  Size: 2400K
    ..................................................  Size: 2449K
    ..................................................  Size: 2499K
    ..................................................  Size: 2549K
    ..................................................  Size: 2600K
    ..................................................  Size: 2650K
    ..................................................  Size: 2700K
    ..................................................  Size: 2749K
    ..................................................  Size: 2799K
    ..................................................  Size: 2850K
    ..................................................  Size: 2899K
    ..................................................  Size: 2949K
    ..................................................  Size: 2999K
    ..................................................  Size: 3049K
    ......................... Size of output: 3075K
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_cuda_9.2 # 103 (click to expand)

    ..................................................  Size: 18600K
    ..................................................  Size: 18649K
    ..................................................  Size: 18700K
    ..................................................  Size: 18749K
    ..................................................  Size: 18799K
    ..................................................  Size: 18849K
    ..................................................  Size: 18899K
    ..................................................  Size: 18950K
    ..................................................  Size: 19000K
    ..................................................  Size: 19049K
    ..................................................  Size: 19099K
    ..................................................  Size: 19149K
    ..................................................  Size: 19199K
    ..................................................  Size: 19250K
    ..................................................  Size: 19300K
    ..................................................  Size: 19350K
    ..................................................  Size: 19400K
    ..................................................  Size: 19449K
    ..................................................  Size: 19499K
    ..................................................  Size: 19549K
    ..................................................  Size: 19599K
    ..................................................  Size: 19650K
    ..................................................  Size: 19700K
    ..................................................  Size: 19750K
    ..................................................  Size: 19800K
    ..................................................  Size: 19850K
    ..................................................  Size: 19900K
    ..................................................  Size: 19949K
    ..................................................  Size: 19999K
    ..................................................  Size: 20049K
    ..................................................  Size: 20099K
    ..................................................  Size: 20149K
    ..................................................  Size: 20200K
    ..................................................  Size: 20250K
    ..................................................  Size: 20300K
    ..................................................  Size: 20350K
    ..................................................  Size: 20400K
    ..................................................  Size: 20450K
    ..................................................  Size: 20499K
    ..................................................  Size: 20549K
    ..................................................  Size: 20600K
    ..................................................  Size: 20650K
    ..................................................  Size: 20700K
    ..................................................  Size: 20750K
    ..................................................  Size: 20800K
    ..................................................  Size: 20850K
    ..................................................  Size: 20900K
    ..................................................  Size: 20950K
    ..................................................  Size: 21000K
    ..................................................  Size: 21050K
    ..................................................  Size: 21100K
    ..................................................  Size: 21150K
    ..................................................  Size: 21200K
    ..................................................  Size: 21249K
    ..................................................  Size: 21299K
    ..................................................  Size: 21349K
    ..................................................  Size: 21399K
    ..................................................  Size: 21449K
    ..................................................  Size: 21499K
    ..................................................  Size: 21550K
    ..................................................  Size: 21600K
    ..................................................  Size: 21650K
    ..................................................  Size: 21700K
    ..................................................  Size: 21750K
    ..................................................  Size: 21800K
    ..................................................  Size: 21850K
    ..................................................  Size: 21900K
    ..................................................  Size: 21950K
    ..................................................  Size: 22000K
    ..................................................  Size: 22050K
    ..................................................  Size: 22100K
    ..................................................  Size: 22150K
    ..................................................  Size: 22200K
    ..................................................  Size: 22250K
    ..................................................  Size: 22300K
    ..................................................  Size: 22350K
    ..................................................  Size: 22400K
    ..................................................  Size: 22450K
    ..................................................  Size: 22500K
    ..................................................  Size: 22550K
    ..................................................  Size: 22600K
    ..................................................  Size: 22650K
    ..................................................  Size: 22699K
    ..................................................  Size: 22749K
    ..................................................  Size: 22799K
    ..................................................  Size: 22850K
    ..................................................  Size: 22900K
    ..................................................  Size: 22950K
    ..................................................  Size: 22999K
    ..................................................  Size: 23049K
    ..................................................  Size: 23099K
    .................. Size of output: 23118K
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# 4332.


Wiki: How to Reproduce PR Testing Builds and Errors.

@mhoemmen mhoemmen added the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Feb 8, 2019
@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 2420
  • 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 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2217
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 710
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 344
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 122
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Using Repos:

Repo: TRILINOS (trilinos/Trilinos)
  • Branch: Fix-2749
  • SHA: 588fad0
  • Mode: TEST_REPO

Pull Request Author: mhoemmen

@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: 2420
  • 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 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 2217
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 710
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0

  • Build Num: 344
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 122
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
JENKINS_JOB_TYPE Experimental
PULLREQUESTNUM 4332
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH Fix-2749
TRILINOS_SOURCE_REPO https://github.com/trilinos/Trilinos
TRILINOS_SOURCE_SHA 588fad0
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 1623adc


CDash Test Results for PR# 4332.

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

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

@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 3582856 into develop Feb 9, 2019
@mhoemmen mhoemmen deleted the Fix-2749 branch August 1, 2019 17:45
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.

3 participants