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

Bring recent stk development from Sierra into Trilinos. #3938

Merged
merged 4 commits into from
Nov 29, 2018
Merged

Bring recent stk development from Sierra into Trilinos. #3938

merged 4 commits into from
Nov 29, 2018

Conversation

alanw0
Copy link
Contributor

@alanw0 alanw0 commented Nov 27, 2018

@trilinos/

Description

Motivation and Context

How Has This Been Tested?

Checklist

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

@alanw0 alanw0 requested review from mhoemmen and prwolfe November 27, 2018 17:32
@bartlettroscoe bartlettroscoe added the stage: in progress Work on the issue has started label Nov 27, 2018
@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 1732
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9f04f3e
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3

  • Build Num: 2297
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.9.3
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9f04f3e
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 1958
  • 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 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9f04f3e
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 269
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9f04f3e
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Using Repos:

Repo: TRILINOS (alanw0/Trilinos)
  • Branch: develop
  • SHA: 9f04f3e
  • Mode: TEST_REPO

Pull Request Author: alanw0

mhoemmen
mhoemmen previously approved these changes Nov 27, 2018
Copy link
Contributor

@mhoemmen mhoemmen left a comment

Choose a reason for hiding this comment

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

@alanw0 Comments are for future STK development, not for this PR. Thanks!

}
catch(std::exception& e)
{
std::cerr<<e.what()<<std::endl;
Copy link
Contributor

Choose a reason for hiding this comment

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

Consider returning a nonzero error code in this case. That would make scripting easier.

input_file_index >= file_vector.size() ||
Teuchos::is_null(file_vector[input_file_index]);
input_file_index >= file_vector.size() ||
Teuchos::is_null(file_vector[input_file_index]);
Copy link
Contributor

Choose a reason for hiding this comment

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

It's not really just any old T; it's actually something more like Teuchos::RCP<T>, right? It would be better to constrain T in the interface than in the implementation.

for (stk::mesh::FieldBase * field : fields) {
const unsigned fieldOrdinal = field->mesh_meta_data_ordinal();

if (field->type_is<double>()) {
Copy link
Contributor

Choose a reason for hiding this comment

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

For the future, keep in mind std::variant and std::visit.

typedef Kokkos::View<stk::mesh::Entity*, MemSpace> EntityViewType;
typedef Kokkos::View<stk::mesh::Entity**, MemSpace> BucketConnectivityType;
typedef Kokkos::View<unsigned*, MemSpace> UnsignedViewType;
Copy link
Contributor

Choose a reason for hiding this comment

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

Prefer using to typedef.

@@ -74,14 +74,7 @@ struct ReductionTeamFunctor
JoinOp (value_type& value_) : value (&value_) {}

Copy link
Contributor

Choose a reason for hiding this comment

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

I'm not sure if you're suppose to keep a pointer to the value inside the reduction functor. The result is just the output of team parallel_reduce, right?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@mhoemmen thanks for the comments, we will incorporate them!

@prwolfe
Copy link
Contributor

prwolfe commented Nov 27, 2018

I want to see the builds. The recent stk builds on the Sierra dashboard are showing a lot of build failures (27). Why do we not expect them here?

@alanw0
Copy link
Contributor Author

alanw0 commented Nov 27, 2018

@prwolfe I will be interested to see the builds also. The dashboard errors appear to be some missing boost headers (file-system issue?) and undefined references to functions that have been moved to different files within the same library (stk_io). Possible issue with continuous/incremental build? I don't know, but we've been routinely building stk for a couple of different builds without issue. It could be an issue in the cmake files, in which case we'll find out with these PR builds...

@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_intel_17.0.1

  • Build Num: 1732
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9f04f3e
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3

  • Build Num: 2297
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.9.3
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9f04f3e
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 1958
  • 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 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9f04f3e
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 269
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9f04f3e
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a
Console Output (last 100 lines) : Trilinos_pullrequest_intel_17.0.1 # 1732 (click to expand)

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='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

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

CHANGED_PACKAGES_PT_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

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 # 2297 (click to expand)

TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3/Trilinos
TRIBITS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3/Trilinos/cmake/tribits

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

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

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

Wrote file 'changed-files.txt'

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

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

CHANGED_PACKAGES_FULL_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

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

CHANGED_PACKAGES_PT_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

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
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 1958 (click to expand)

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

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

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

Wrote file 'changed-files.txt'

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

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

CHANGED_PACKAGES_FULL_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

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

CHANGED_PACKAGES_PT_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_STK = ON
    -- Setting Trilinos_ENABLE_STKIO = ON
    -- Setting Trilinos_ENABLE_STKMath = ON
    -- Setting Trilinos_ENABLE_STKMesh = ON
    -- Setting Trilinos_ENABLE_STKNGP = ON
    -- Setting Trilinos_ENABLE_STKSearch = ON
    -- Setting Trilinos_ENABLE_STKSimd = ON
    -- Setting Trilinos_ENABLE_STKUnit_test_utils = ON
    -- Setting Trilinos_ENABLE_STKUnit_tests = ON
    -- Setting Trilinos_ENABLE_STKUtil = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
    Build name = PR-3938-test-Trilinos_pullrequest_gcc_4.8.4-1958
    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-3938-test-Trilinos_pullrequest_gcc_4.8.4-1958&field3=buildstamp&compare3=61&value3=20181127-1742-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-3938-test-Trilinos_pullrequest_gcc_4.8.4-1958&field2=buildstamp&compare2=61&value2=20181127-1742-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-3938-test-Trilinos_pullrequest_gcc_4.8.4-1958&field2=buildstamp&compare2=61&value2=20181127-1742-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    . Size of output: 100K
    configure submit error = 0
    Configure suceeded.
    Starting build step.
    Each symbol represents 1024 bytes of output.
    .................................................. Size: 49K
    .................................................. Size: 99K
    .................................................. Size: 149K
    .................................................. Size: 200K
    .................................................. Size: 249K
    .................................................. Size: 299K
    .................................................. Size: 349K
    .................................................. Size: 399K
    .................................................. Size: 450K
    .................................................. Size: 499K
    .................................................. Size: 549K
    .................................................. Size: 599K
    .................................................. Size: 650K
    .................................................. Size: 699K
    .................................................. Size: 749K
    .................................................. Size: 799K
    ................... Size of output: 819K
    Build succeeded.
    build submit error = 0
    Starting testing step.
    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
Finished: FAILURE

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

CDash Track = Pull Request
pwd: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL
+ env TRILINOS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/commonTools/framework/get-changed-trilinos-packages.sh origin/develop HEAD packageEnables.cmake

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


TRILINOS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
TRIBITS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/tribits

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

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

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

Wrote file 'changed-files.txt'

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

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

CHANGED_PACKAGES_FULL_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

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

CHANGED_PACKAGES_PT_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'


CDash Test Results for PR# 3938.


Wiki: How to Reproduce PR Testing Builds and Errors.

@alanw0
Copy link
Contributor Author

alanw0 commented Nov 27, 2018

@prwolfe Looks like builds failed, but I can't see anything stk-related. Don't know how to fix this...

@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_intel_17.0.1

  • Build Num: 1736
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9f04f3e
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3

  • Build Num: 2301
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.9.3
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9f04f3e
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 1962
  • 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 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9f04f3e
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 273
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9f04f3e
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Using Repos:

Repo: TRILINOS (alanw0/Trilinos)
  • Branch: develop
  • SHA: 9f04f3e
  • Mode: TEST_REPO

Pull Request Author: alanw0

@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_intel_17.0.1

  • Build Num: 1736
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9f04f3e
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3

  • Build Num: 2301
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.9.3
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9f04f3e
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 1962
  • 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 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9f04f3e
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 273
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9f04f3e
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a
Console Output (last 100 lines) : Trilinos_pullrequest_intel_17.0.1 # 1736 (click to expand)

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='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

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

CHANGED_PACKAGES_PT_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_STK = ON
    -- Setting Trilinos_ENABLE_STKIO = ON
    -- Setting Trilinos_ENABLE_STKMath = ON
    -- Setting Trilinos_ENABLE_STKMesh = ON
    -- Setting Trilinos_ENABLE_STKNGP = ON
    -- Setting Trilinos_ENABLE_STKSearch = ON
    -- Setting Trilinos_ENABLE_STKSimd = ON
    -- Setting Trilinos_ENABLE_STKUnit_test_utils = ON
    -- Setting Trilinos_ENABLE_STKUnit_tests = ON
    -- Setting Trilinos_ENABLE_STKUtil = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
    Build name = PR-3938-test-Trilinos_pullrequest_intel_17.0.1-1736
    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
    CMake Error at /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype/simple_testing.cmake:118 (ctest_empty_binary_directory):
    ctest_empty_binary_directory problem removing the binary directory:
    /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test

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-3938-test-Trilinos_pullrequest_intel_17.0.1-1736&field3=buildstamp&compare3=61&value3=20181127-2212-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-3938-test-Trilinos_pullrequest_intel_17.0.1-1736&field2=buildstamp&compare2=61&value2=20181127-2212-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-3938-test-Trilinos_pullrequest_intel_17.0.1-1736&field2=buildstamp&compare2=61&value2=20181127-2212-Pull Request
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
Size of output: 99K
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 of output: 575K
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 # 2301 (click to expand)

TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3/Trilinos
TRIBITS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3/Trilinos/cmake/tribits

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

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

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

Wrote file 'changed-files.txt'

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

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

CHANGED_PACKAGES_FULL_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

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

CHANGED_PACKAGES_PT_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

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
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 1962 (click to expand)

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

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

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

Wrote file 'changed-files.txt'

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

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

CHANGED_PACKAGES_FULL_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

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

CHANGED_PACKAGES_PT_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_STK = ON
    -- Setting Trilinos_ENABLE_STKIO = ON
    -- Setting Trilinos_ENABLE_STKMath = ON
    -- Setting Trilinos_ENABLE_STKMesh = ON
    -- Setting Trilinos_ENABLE_STKNGP = ON
    -- Setting Trilinos_ENABLE_STKSearch = ON
    -- Setting Trilinos_ENABLE_STKSimd = ON
    -- Setting Trilinos_ENABLE_STKUnit_test_utils = ON
    -- Setting Trilinos_ENABLE_STKUnit_tests = ON
    -- Setting Trilinos_ENABLE_STKUtil = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
    Build name = PR-3938-test-Trilinos_pullrequest_gcc_4.8.4-1962
    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=ascic158&field2=buildname&compare2=61&value2=PR-3938-test-Trilinos_pullrequest_gcc_4.8.4-1962&field3=buildstamp&compare3=61&value3=20181127-2213-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-3938-test-Trilinos_pullrequest_gcc_4.8.4-1962&field2=buildstamp&compare2=61&value2=20181127-2213-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-3938-test-Trilinos_pullrequest_gcc_4.8.4-1962&field2=buildstamp&compare2=61&value2=20181127-2213-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    . Size of output: 100K
    configure submit error = 0
    Configure suceeded.
    Starting build step.
    Each symbol represents 1024 bytes of output.
    .................................................. Size: 49K
    .................................................. Size: 99K
    .................................................. Size: 149K
    .................................................. Size: 200K
    .................................................. Size: 249K
    .................................................. Size: 299K
    .................................................. Size: 349K
    .................................................. Size: 399K
    .................................................. Size: 449K
    .................................................. Size: 499K
    .................................................. Size: 549K
    .................................................. Size: 599K
    .................................................. Size: 649K
    .................................................. Size: 699K
    .................................................. Size: 749K
    .................................................. Size: 799K
    ................... Size of output: 819K
    Build succeeded.
    build submit error = 0
    Starting testing step.
    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
Finished: FAILURE

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

CDash Track = Pull Request
pwd: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL
+ env TRILINOS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/commonTools/framework/get-changed-trilinos-packages.sh origin/develop HEAD packageEnables.cmake

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


TRILINOS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
TRIBITS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/tribits

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

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

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

Wrote file 'changed-files.txt'

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

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

CHANGED_PACKAGES_FULL_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

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

CHANGED_PACKAGES_PT_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'


CDash Test Results for PR# 3938.


Wiki: How to Reproduce PR Testing Builds and Errors.

@mhoemmen
Copy link
Contributor

@alanw0 Looks like a legit SIGSEGV:

...
*** Starting test NgpMeshModImpl.bucketTopology from implNgpMeshMod.cpp:193
[       OK ] NgpMeshModImpl.bucketTopology (139825902059888 ms)
*** Starting test NgpMeshModImpl.bucketPartInfo from implNgpMeshMod.cpp:203
[       OK ] NgpMeshModImpl.bucketPartInfo (5577835017426462542 ms)
*** Starting test NgpMeshModImpl.findBucketWithParts from implNgpMeshMod.cpp:213
[       OK ] NgpMeshModImpl.findBucketWithParts (12261008 ms)
*** Starting test NgpMeshModImpl.createNewPartOrdView from implNgpMeshMod.cpp:223
[       OK ] NgpMeshModImpl.createNewPartOrdView (5577835017426462542 ms)
*** Starting test NgpMeshModImpl.addBucketOnDevice from implNgpMeshMod.cpp:233
[       OK ] NgpMeshModImpl.addBucketOnDevice (5577835017426462542 ms)
*** Starting test NgpMeshModHowTo.changeEntityParts from howToNgpMeshMod.cpp:55
[       OK ] NgpMeshModHowTo.changeEntityParts (5577835017426462542 ms)
*** Starting test NgpHowTo.loopOverSubsetOfMesh from howToNgp.cpp:50
[       OK ] NgpHowTo.loopOverSubsetOfMesh (8022168156094097230 ms)
*** Starting test NgpHowTo.loopOverAllMeshNodes from howToNgp.cpp:70
[       OK ] NgpHowTo.loopOverAllMeshNodes (8022168156094097230 ms)
*** Starting test NgpHowTo.loopOverMeshFaces from howToNgp.cpp:87
[       OK ] NgpHowTo.loopOverMeshFaces (8022168156094097230 ms)
*** Starting test NgpHowTo.loopOverElemNodes from howToNgp.cpp:147
[ascic158:44215] *** Process received signal ***
[ascic158:44215] Signal: Segmentation fault (11)
[ascic158:44215] Signal code: Address not mapped (1)
[ascic158:44215] Failing at address: (nil)
[ascic158:44216] *** Process received signal ***
[ascic158:44216] Signal: Segmentation fault (11)
[ascic158:44216] Signal code: Address not mapped (1)
[ascic158:44216] Failing at address: (nil)
[ascic158:44217] *** Process received signal ***
[ascic158:44217] Signal: Segmentation fault (11)
[ascic158:44217] Signal code: Address not mapped (1)
[ascic158:44217] Failing at address: (nil)
*** Failure on proc 2 in /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/packages/stk/stk_unit_tests/stk_ngp/howToNgp.cpp:114
      Expected: 1u
      Which is: 1
To be equal to: elems.size()
      Which is: 0
*** Failure on proc 1 in /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/packages/stk/stk_unit_tests/stk_ngp/howToNgp.cpp:114
      Expected: 1u
      Which is: 1
To be equal to: elems.size()
      Which is: 0
*** Failure on proc 3 in /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/packages/stk/stk_unit_tests/stk_ngp/howToNgp.cpp:114
      Expected: 1u
      Which is: 1
To be equal to: elems.size()
      Which is: 0
...

@alanw0
Copy link
Contributor Author

alanw0 commented Nov 28, 2018

@mhoemmen It sure does. Maybe you can teach me how to find that output. I still can't find it, I've been clicking all over the place.

@mhoemmen
Copy link
Contributor

@alanw0 Click on the "CDash Test Results for PR# 3938." link and look for the red test failures.

and also adjust some ngp unit-tests to only run on 1 MPI proc.
@alanw0
Copy link
Contributor Author

alanw0 commented Nov 28, 2018

Thanks @mhoemmen I've now attempted to address that.

@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_intel_17.0.1

  • Build Num: 1743
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9dfe9f4
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3

  • Build Num: 2308
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.9.3
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9dfe9f4
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 1969
  • 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 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9dfe9f4
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 280
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9dfe9f4
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Using Repos:

Repo: TRILINOS (alanw0/Trilinos)
  • Branch: develop
  • SHA: 9dfe9f4
  • Mode: TEST_REPO

Pull Request Author: alanw0

mhoemmen
mhoemmen previously approved these changes Nov 28, 2018
@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_intel_17.0.1

  • Build Num: 1743
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9dfe9f4
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3

  • Build Num: 2308
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.9.3
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9dfe9f4
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 1969
  • 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 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9dfe9f4
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 280
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 9dfe9f4
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a
Console Output (last 100 lines) : Trilinos_pullrequest_intel_17.0.1 # 1743 (click to expand)

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

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

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

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

Wrote file 'changed-files.txt'

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

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

CHANGED_PACKAGES_FULL_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

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

CHANGED_PACKAGES_PT_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

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 # 2308 (click to expand)

TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3/Trilinos
TRIBITS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3/Trilinos/cmake/tribits

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

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

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

Wrote file 'changed-files.txt'

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

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

CHANGED_PACKAGES_FULL_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

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

CHANGED_PACKAGES_PT_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

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
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 1969 (click to expand)

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

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

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

Wrote file 'changed-files.txt'

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

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

CHANGED_PACKAGES_FULL_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

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

CHANGED_PACKAGES_PT_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_STK = ON
    -- Setting Trilinos_ENABLE_STKIO = ON
    -- Setting Trilinos_ENABLE_STKMath = ON
    -- Setting Trilinos_ENABLE_STKMesh = ON
    -- Setting Trilinos_ENABLE_STKNGP = ON
    -- Setting Trilinos_ENABLE_STKSearch = ON
    -- Setting Trilinos_ENABLE_STKSimd = ON
    -- Setting Trilinos_ENABLE_STKUnit_test_utils = ON
    -- Setting Trilinos_ENABLE_STKUnit_tests = ON
    -- Setting Trilinos_ENABLE_STKUtil = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
    Build name = PR-3938-test-Trilinos_pullrequest_gcc_4.8.4-1969
    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-3938-test-Trilinos_pullrequest_gcc_4.8.4-1969&field3=buildstamp&compare3=61&value3=20181128-1649-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-3938-test-Trilinos_pullrequest_gcc_4.8.4-1969&field2=buildstamp&compare2=61&value2=20181128-1649-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-3938-test-Trilinos_pullrequest_gcc_4.8.4-1969&field2=buildstamp&compare2=61&value2=20181128-1649-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    . Size of output: 100K
    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 of output: 819K
    Build succeeded.
    build submit error = 0
    Starting testing step.
    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
Finished: FAILURE

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

CDash Track = Pull Request
pwd: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL
+ env TRILINOS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/commonTools/framework/get-changed-trilinos-packages.sh origin/develop HEAD packageEnables.cmake

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


TRILINOS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
TRIBITS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/tribits

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

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

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

Wrote file 'changed-files.txt'

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

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

CHANGED_PACKAGES_FULL_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

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

CHANGED_PACKAGES_PT_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'


CDash Test Results for PR# 3938.


Wiki: How to Reproduce PR Testing Builds and Errors.

Adjust a couple of unit-tests to not run in parallel when they
are not meant to.
@trilinos-autotester
Copy link
Contributor

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

mhoemmen
mhoemmen previously approved these changes Nov 28, 2018
@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_intel_17.0.1

  • Build Num: 1746
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 7d9dd97
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3

  • Build Num: 2311
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.9.3
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 7d9dd97
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 1972
  • 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 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 7d9dd97
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 283
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 7d9dd97
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Using Repos:

Repo: TRILINOS (alanw0/Trilinos)
  • Branch: develop
  • SHA: 7d9dd97
  • Mode: TEST_REPO

Pull Request Author: alanw0

@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_intel_17.0.1

  • Build Num: 1746
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 7d9dd97
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3

  • Build Num: 2311
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.9.3
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 7d9dd97
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 1972
  • 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 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 7d9dd97
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 283
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 7d9dd97
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a
Console Output (last 100 lines) : Trilinos_pullrequest_intel_17.0.1 # 1746 (click to expand)

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='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

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

CHANGED_PACKAGES_PT_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

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 # 2311 (click to expand)

TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3/Trilinos
TRIBITS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3/Trilinos/cmake/tribits

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

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

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

Wrote file 'changed-files.txt'

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

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

CHANGED_PACKAGES_FULL_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

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

CHANGED_PACKAGES_PT_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

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
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 1972 (click to expand)

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

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

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

Wrote file 'changed-files.txt'

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

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

CHANGED_PACKAGES_FULL_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

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

CHANGED_PACKAGES_PT_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'

  • set +x
    Enabled packages:
    -- Setting Trilinos_ENABLE_STK = ON
    -- Setting Trilinos_ENABLE_STKIO = ON
    -- Setting Trilinos_ENABLE_STKMath = ON
    -- Setting Trilinos_ENABLE_STKMesh = ON
    -- Setting Trilinos_ENABLE_STKNGP = ON
    -- Setting Trilinos_ENABLE_STKSearch = ON
    -- Setting Trilinos_ENABLE_STKSimd = ON
    -- Setting Trilinos_ENABLE_STKUnit_test_utils = ON
    -- Setting Trilinos_ENABLE_STKUnit_tests = ON
    -- Setting Trilinos_ENABLE_STKUtil = ON
    Set CWD = /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
    Build name = PR-3938-test-Trilinos_pullrequest_gcc_4.8.4-1972
    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-3938-test-Trilinos_pullrequest_gcc_4.8.4-1972&field3=buildstamp&compare3=61&value3=20181128-1911-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-3938-test-Trilinos_pullrequest_gcc_4.8.4-1972&field2=buildstamp&compare2=61&value2=20181128-1911-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-3938-test-Trilinos_pullrequest_gcc_4.8.4-1972&field2=buildstamp&compare2=61&value2=20181128-1911-Pull Request
    Starting configure step.
    Each . represents 1024 bytes of output
    .................................................. Size: 50K
    .................................................. Size: 100K
    . Size of output: 100K
    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 of output: 819K
    Build succeeded.
    build submit error = 0
    Starting testing step.
    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
Finished: FAILURE

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

CDash Track = Pull Request
pwd: /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL
+ env TRILINOS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos /scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/commonTools/framework/get-changed-trilinos-packages.sh origin/develop HEAD packageEnables.cmake

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


TRILINOS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
TRILINOS_SCRIPTS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
TRIBITS_DIR=/scratch/trilinos/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/tribits

A) Generate the Trilinos Packages definition and depencencies XML file

Wrote the file 'TrilinosPackageDependencies.xml'

B) Get the set of changed files

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

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

Wrote file 'changed-files.txt'

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

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

CHANGED_PACKAGES_FULL_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

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

CHANGED_PACKAGES_PT_LIST='STK,STKIO,STKMath,STKMesh,STKNGP,STKSearch,STKSimd,STKUnit_test_utils,STKUnit_tests,STKUtil'

E) Generate the *.cmake enables file

Wrote file 'packageEnables.cmake'


CDash Test Results for PR# 3938.


Wiki: How to Reproduce PR Testing Builds and Errors.

Copy link
Contributor

@mhoemmen mhoemmen left a comment

Choose a reason for hiding this comment

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

For the future, think about grouping together tests based on the number of MPI processes that they require. This code may work, but it may give a false sense of security if run manually.

@trilinos-autotester
Copy link
Contributor

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

@alanw0
Copy link
Contributor Author

alanw0 commented Nov 28, 2018

@mhoemmen Yes it turns out that our sierra unit-tests run with filters that exclude some, and only run some on 1 proc, etc. Whereas the cmake/ctest system runs them differently... We will clean this up, and probably uncover some bugs to fix in the process.

@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_intel_17.0.1

  • Build Num: 1754
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 5364d8c
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3

  • Build Num: 2319
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.9.3
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 5364d8c
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 1980
  • 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 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 5364d8c
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 290
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 5364d8c
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Using Repos:

Repo: TRILINOS (alanw0/Trilinos)
  • Branch: develop
  • SHA: 5364d8c
  • Mode: TEST_REPO

Pull Request Author: alanw0

@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_intel_17.0.1

  • Build Num: 1754
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 5364d8c
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3

  • Build Num: 2319
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
COMPILER_MODULE sems-gcc/4.9.3
JENKINS_BUILD_TYPE Release
JENKINS_COMM_TYPE MPI
JENKINS_DO_COMPLEX OFF
JENKINS_JOB_TYPE Experimental
MPI_MODULE sems-openmpi/1.8.7
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 5364d8c
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 1980
  • 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 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 5364d8c
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 290
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PULLREQUESTNUM 3938
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH develop
TRILINOS_SOURCE_REPO https://github.com/alanw0/Trilinos
TRILINOS_SOURCE_SHA 5364d8c
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 804743a


CDash Test Results for PR# 3938.

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

@alanw0 alanw0 merged commit aafb75d into trilinos:develop Nov 29, 2018
@bartlettroscoe bartlettroscoe removed the stage: in progress Work on the issue has started label Nov 29, 2018
tjfulle pushed a commit to tjfulle/Trilinos that referenced this pull request Dec 6, 2018
* Bring recent stk development from Sierra into Trilinos.

* Tweak some cmake files to add dependence on stk_util_util

and also adjust some ngp unit-tests to only run on 1 MPI proc.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants