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

Framework: PullRequestLinuxDriverMerge.py py2-3 compatibility fix #7932

Merged
merged 3 commits into from
Sep 1, 2020
Merged

Framework: PullRequestLinuxDriverMerge.py py2-3 compatibility fix #7932

merged 3 commits into from
Sep 1, 2020

Conversation

william76
Copy link
Contributor

@trilinos/framework
@prwolfe
@jwillenbring

Motivation

The calls to subprocess.check_output() in the Merge script do not return the same thing in python2 and python3 in this code:

remote_list = subprocess.check_output(['git', 'remote', '-v'])
if 'source_remote' in remote_list:

In python2 the output is a string object and the comparison in line 94 is valid, but in Python3 the type of remote_list will be a bytes object which throws a TypeError in the comparison in line 94.

The easiest way I know of to fix this that is both Python2 and 3 compatible is to decode the output from the check_output() call into a utf-8 object by adding remote_list = remote_list.decode('utf-8'). This will convert the bytes object into a unicode object in Python2 and a str object in Python3, which works with the string-comparison for both versions.

Testing

For Example:

In this Python2 log:

$ python2
Python 2.7.9 (default, Feb 14 2020, 08:39:29)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import subprocess
>>> output = subprocess.check_output(['ls'])
>>> type(output)
<type 'str'>
>>> 'README' in output
True
>>> output = output.decode('utf-8')
>>> type(output)
<type 'unicode'>
>>> 'README' in output
True
>>>

The output is returned as a 'str' object and when we decode it it becomes a 'unicode' object but both can be string compared.

In Python3:

$ python3
Python 3.5.2 (default, Feb 12 2020, 14:58:46)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-39)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import subprocess
>>> output = subprocess.check_output(['ls'])
>>> type(output)
<class 'bytes'>
>>> 'README' in output
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: a bytes-like object is required, not 'str'
>>> output = output.decode('utf-8')
>>> 'README' in output
True
>>> type(output)
<class 'str'>

The output to subprocess.check_output() is a bytes object which will cause a TypeError if it's compared directly to a string, but decoding it converts it to a str object which is comparable.

William McLendon added 2 commits August 28, 2020 19:20
The calls to `subprocess.check_output()` in the Merge script do not
return the same thing in python2 and python3.

In python2 the output is a string object, but in python3 it is a bytes
object. This causes problems in Python3 if you do something like:

```python
output = subprocess.check_output(['ls'])

if 'foo.txt' in output:
    do_something()
```

In this code, Python2 will work just fine in the `if` statmement because
you're comparing strings. However, in Python3 this statement will fail
because the comparison is between a `bytes` object and a `str` object.

Adding the `output = output.decode('utf-8')` convert the output object
into a utf-8 string, which is compatible.
Python2 converts it to a 'unicode' type but it's still compatible with
a string comparison.
@william76 william76 added AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed PA: Framework Issues that fall under the Trilinos Framework Product Area labels Aug 29, 2020
@william76 william76 self-assigned this Aug 29, 2020
@william76
Copy link
Contributor Author

Oh, I also fixed the typo in the console log in PullRequestLinuxDriver.sh from my earlier PR this week.

@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: 7700
  • 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
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 7510
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5935
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 155
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1971
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 5267
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 416
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 3264
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 3285
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Using Repos:

Repo: TRILINOS (william76/Trilinos)
  • Branch: PRDriverMergeFix-20200828
  • SHA: 729d539
  • Mode: TEST_REPO

Pull Request Author: william76

@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: 7700
  • 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
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 7510
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5935
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 155
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1971
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 5267
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 416
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 3264
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 3285
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 7700 (click to expand)

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

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/tr-test-7/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='ALL_PACKAGES'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7932-test-Trilinos_pullrequest_gcc_4.8.4-7700
Cur dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test
Parallel level = 20
Testing Parallel level = 10
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 60
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/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-7.novalocal&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_gcc_4.8.4-7700&field3=buildstamp&compare3=61&value3=20200829-0204-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_4.8.4-7700&field2=buildstamp&compare2=61&value2=20200829-0204-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_4.8.4-7700&field2=buildstamp&compare2=61&value2=20200829-0204-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: 450K
.......... Size of output: 459K
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: 249K
.................................................. Size: 300K
.................................................. Size: 350K
.................................................. Size: 399K
.................................................. Size: 449K
.................................................. Size: 499K
.................................................. Size: 549K
..................................... Size of output: 586K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
_pullrequest_gcc_4.8.4@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #7700
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.8.4/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

    ..................................................  Size: 1149K
    ..................................................  Size: 1200K
    ..................................................  Size: 1250K
    ..................................................  Size: 1299K
    ..................................................  Size: 1350K
    ..................................................  Size: 1399K
    ..................................................  Size: 1449K
    ..................................................  Size: 1499K
    ..................................................  Size: 1549K
    ..................................................  Size: 1600K
    ..................................................  Size: 1650K
    ..................................................  Size: 1699K
    ..................................................  Size: 1750K
    ..................................................  Size: 1799K
    ..................................................  Size: 1849K
    ..................................................  Size: 1899K
    ..................................................  Size: 1949K
    ..................................................  Size: 1999K
    ..................................................  Size: 2050K
    ..................................................  Size: 2099K
    ..................................................  Size: 2150K
    ..................................................  Size: 2199K
    ..................................................  Size: 2249K
    ..................................................  Size: 2300K
    ..................................................  Size: 2349K
    ..................................................  Size: 2399K
    ..................................................  Size: 2450K
    ..................................................  Size: 2499K
    ..................................................  Size: 2549K
    ..................................................  Size: 2600K
    ..................................................  Size: 2649K
    ..................................................  Size: 2699K
    ..................................................  Size: 2749K
    ..................................................  Size: 2799K
    ..................................................  Size: 2850K
    ..................................................  Size: 2899K
    ..................................................  Size: 2950K
    ..................................................  Size: 2999K
    ..................................................  Size: 3050K
    ..................................................  Size: 3100K
    ..................................................  Size: 3149K
    ..................................................  Size: 3200K
    ..................................................  Size: 3249K
    ..................................................  Size: 3300K
    ..................................................  Size: 3349K
    ..................................................  Size: 3399K
    ........................... Size of output: 3426K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
40d0dd10e303f74d23ebd873e5e
SEMS_SUPERLU_LOCAL_PYTHON_VERSION = 2.7.5
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = icc
SEMS_SCOTCH_LOCAL_COMPILER_VERSION = 4.8.5
SEMS_ZLIB_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/zlib/1.2.8/intel/17.0.1/base/include
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
SEMS_SCOTCH_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/scotch/6.0.3/intel/17.0.1/mpich/3.2/nopthread_64bit_parallel
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 7510
SEMS_NETCDF_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/parallel/include
MKL_LIB = /projects/sems/install/rhel7-x86_64/sems/compiler/intel/17.0.1/base/mkl/lib/intel64
MODULE_VERSION_STACK = 3.2.10
SEMS_MPICH_ROOT = /projects/sems/install/rhel7-x86_64/sems/compiler/intel/17.0.1/mpich/3.2
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.8.5
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.7.5
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/parallel/lib
GIT_BRANCH = origin/develop
SEMS_INTEL_LOCAL_PYTHON_VERSION = 2.7.5
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.63.0/intel/17.0.1/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/intel/17.0.1/mpich/3.2/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/scotch/6.0.3/intel/17.0.1/mpich/3.2/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-intel/17.0.1:sems-mpich/3.2:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = icpc
PWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #7510
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/intel/17.0.1/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7932-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5935
Cur dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test
Parallel level = 20
Testing Parallel level = 10
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 60
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/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxGCC4.9.3TestingSettingsSERIAL.cmake"
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic166&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5935&field3=buildstamp&compare3=61&value3=20200829-0204-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5935&field2=buildstamp&compare2=61&value2=20200829-0204-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5935&field2=buildstamp&compare2=61&value2=20200829-0204-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: 385K
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: 400K
.................................................. Size: 449K
.................................................. Size: 499K
............................. Size of output: 529K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/4.9.3/base/include
MODULE_VERSION_STACK = 3.2.10
JOB_COOWNERS_EMAILS = wcmclen@sandia.gov,trilinos@sandia.gov
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/4.9.3/base/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.63.0/gcc/4.9.3/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/gcc/4.9.3/base
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/base:sems-netcdf/4.7.3/base:sems-metis/5.1.0/base:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #5935
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.9.3/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_7.2.0_debug # 155 (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/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7932-test-Trilinos_pullrequest_gcc_7.2.0_debug-155
Cur dir = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/pull_request_test
Parallel level = 20
Testing Parallel level = 10
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 60
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/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0DebugTestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_gcc_7.2.0_debug-155&field3=buildstamp&compare3=61&value3=20200829-0205-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_7.2.0_debug-155&field2=buildstamp&compare2=61&value2=20200829-0205-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_7.2.0_debug-155&field2=buildstamp&compare2=61&value2=20200829-0205-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: 445K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................................. Size: 49K
.................................................. Size: 99K
.................................................. Size: 149K
................................................ Size of output: 197K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
TROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #155
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/7.2.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 1971 (click to expand)

  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic166&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_gcc_8.3.0-1971&field3=buildstamp&compare3=61&value3=20200829-0205-Pull Request-Experimental
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_8.3.0-1971&field2=buildstamp&compare2=61&value2=20200829-0205-Pull Request-Experimental
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_8.3.0-1971&field2=buildstamp&compare2=61&value2=20200829-0205-Pull Request-Experimental
Starting configure step.
   Each . represents 1024 bytes of output
    ..................................................  Size: 50K
    ..................................................  Size: 100K
    ..................................................  Size: 150K
    ..................................................  Size: 200K
    ..................................................  Size: 250K
    ..................................................  Size: 300K
    ..................................................  Size: 350K
    ..................................................  Size: 400K
    ................................................ Size of output: 447K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 49K
    ..................................................  Size: 99K
    ..................................................  Size: 149K
    ..................................................  Size: 200K
    ..................................................  Size: 249K
    ..................................................  Size: 299K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 649K
    ..................................................  Size: 699K
    ..................................................  Size: 749K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 900K
    ..................................................  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: 1899K
    ......................... Size of output: 1924K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
= 3.2.10
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.8.5
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.7.5
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/8.3.0/openmpi/1.10.1/parallel/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.66.0/gcc/8.3.0/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/gcc/8.3.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/scotch/6.0.3/gcc/8.3.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/8.3.0:sems-openmpi/1.10.1:sems-boost/1.66.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.17.1:sems-ninja_fortran/1.10.0:atdm-env
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@tmp
SEMS_CMAKE_VERSION = 3.17.1
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #1971
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/8.3.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_cuda_9.2 # 5267 (click to expand)

    ..................................................  Size: 50299K
    ..................................................  Size: 50350K
    ..................................................  Size: 50399K
    ..................................................  Size: 50449K
    ..................................................  Size: 50500K
    ..................................................  Size: 50550K
    ..................................................  Size: 50600K
    ..................................................  Size: 50649K
    ..................................................  Size: 50699K
    ..................................................  Size: 50749K
    ..................................................  Size: 50799K
    ..................................................  Size: 50849K
    .......... Size of output: 50860K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
 ride12 ride12 ride12 ride12 ride12 ride12 ride12
METIS_ROOT = /home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
LSB_EXIT_PRE_ABORT = 99
TRILINOS_SOURCE_REPO = https://github.com/william76/Trilinos
PARMETIS_HOME = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
FC_VERSION = 7.2.0
LSB_JOBFILENAME = /ascldap/users/trilinos/.lsbatch/1598666731.6733
BLAS_ROOT = /home/projects/ppc64le-pwr8/netlib/3.8.0/gcc/7.2.0
GIT_CHECKOUT_DIR = Trilinos
LSB_AFFINITY_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1598666731.6733.hostAffinityFile
PARMETIS_ROOT = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
LSF_ENVDIR = /opt/lsf/conf
MPI_VENDOR = openmpi
PYTHON = /home/projects/ppc64le/python/2.7.12/bin/python
CXX_VENDOR = gcc
HDF5_ROOT = /home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
HOSTTYPE = LINUXPPC64LE
SSH_CLIENT = 205.137.81.17 40654 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
LSF_LIM_API_NTRIES = 1
PATH = /ascldap/users/rabartl/install/white-ride/cmake-3.11.2/bin:/ascldap/users/rabartl/install/white-ride/ninja-1.8.2/bin:/home/projects/ppc64le/valgrind/3.12.0/bin:/home/projects/ppc64le/cmake/3.9.6/bin:/home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0/bin:/home/projects/ppc64le-pwr8-nvidia/netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le/java/ibm/sdk/8.0.0/bin:/home/projects/ppc64le/papi/5.5.1/bin:/home/projects/ppc64le/gcc/7.2.0/bin:/home/projects/ppc64le/binutils/2.30.0/bin:/home/projects/ppc64le-pwr8-nvidia/cuda/9.2.88/bin:/home/projects/ppc64le/python/2.7.12/bin:/home/projects/ppc64le/git/2.10.1/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/etc:/usr/local/bin:/usr/bin:/opt/ibutils/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
LSB_QUEUE = rhel7F
LSF_JOB_TIMESTAMP_VALUE = 1598666732
LSB_EXEC_HOSTTYPE = LINUXPPC64LE
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 938de3862d7cd40d0dd10e303f74d23ebd873e5e
LSB_DJOB_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1598666731.6733.hostfile
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
LSF_LIBDIR = /opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/lib
CGNS_VERSION = 20180521
LSB_SUB_USER = trilinos
NODE_LABELS = ride-trilinos trilinos-ride
GIT_BRANCH_2 = origin/pull_request_changes
GIT_CHECKOUT_DIR_1 = TFW_single_configure_support_scripts
GIT_CHECKOUT_DIR_2 = TFW_testing_single_configure_prototype
JOB_OWNER_EMAIL = HRSwant@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 5267
SBD_KRB5CCNAME_VAL = 
LSB_RES_GET_FANOUT_INFO = Y
RUN_DISPLAY_URL = https://ascic-jenkins.sandia.gov/job/trilinos-folder/job/Trilinos_pullrequest_cuda_9.2/5267/display/redirect
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
LSB_BATCH_JID = 6733
MPI_HOME = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
SUPERLU_HOME = /home/projects/ppc64le-pwr8/superlu/4.3.0/gcc/7.2.0
F77_VENDOR = gcc
KRB5CCNAME = FILE:/tmp/krb5cc_91724_wQFUVKfdGI
BINUTILS_VERSION = 2.30.0
GIT_BRANCH = origin/develop
CMAKE_ROOT = /home/projects/ppc64le/cmake/3.9.6
BOOST_ROOT = /home/projects/ppc64le-pwr8/boost/1.65.1/gcc/7.2.0
VALGRIND_ROOT = /home/projects/ppc64le/valgrind/3.12.0
MPIF77 = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin/mpif77
PARMETIS_VERSION = 4.0.3
LSB_JOBNAME = trilinos-folder/Trilinos_pullrequest_cuda_9.2
LOADEDMODULES = git/2.10.1:python/2.7.12:cuda/9.2.88:binutils/2.30.0:gcc/7.2.0:papi/5.5.1:java/ibm/sdk/8.0.0:openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:zlib/1.2.8:hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cgns/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netlib/3.8.0/gcc/7.2.0:superlu/4.3.0/gcc/7.2.0:boost/1.65.1/gcc/7.2.0:metis/5.0.1/gcc/7.2.0:parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cmake/3.9.6:valgrind/3.12.0:devpack/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
WORKSPACE_TMP = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@tmp
GIT_BRANCH_1 = origin/master
CUDA_MANAGED_FORCE_DEVICE_ALLOC = 1
HISTCONTROL = ignoredups
PWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
LS_EXECCWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #5267
CXX_VERSION = 7.2.0
PYTHON_ROOT = /home/projects/ppc64le/python/2.7.12
OMPI_CXX = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/packages/kokkos/bin/nvcc_wrapper
SUPERLU_VERSION = 4.3.0
PULLREQUESTNUM = 7932
BINARY_TYPE_HPC = 

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

    ..................................................  Size: 31900K
    ..................................................  Size: 31949K
    ..................................................  Size: 32000K
    ..................................................  Size: 32050K
    ..................................................  Size: 32100K
    ..................................................  Size: 32150K
    ..................................................  Size: 32200K
    ..................................................  Size: 32249K
    ..................................................  Size: 32300K
    ..................................................  Size: 32349K
    ..................................................  Size: 32400K
    ..................................................  Size: 32449K
    ..................................................  Size: 32499K
    ..................................................  Size: 32550K
    ..................................................  Size: 32599K
    ..................................................  Size: 32650K
    ..................................................  Size: 32700K
    ..................................................  Size: 32750K
    ..................................................  Size: 32800K
    ..................................................  Size: 32849K
    ..................................................  Size: 32899K
    ..................................................  Size: 32950K
    ..................................................  Size: 33000K
    ..................................................  Size: 33049K
    ..................................................  Size: 33099K
    ..................................................  Size: 33150K
    ..................................................  Size: 33199K
    ..................................................  Size: 33250K
    ..................................................  Size: 33299K
    ..................................................  Size: 33349K
    ..................................................  Size: 33400K
    ..................................................  Size: 33450K
    ..................................................  Size: 33500K
    ..................................................  Size: 33550K
    ..................................................  Size: 33599K
    ..................................................  Size: 33650K
    ..................................................  Size: 33699K
    ..................................................  Size: 33750K
    ..................................................  Size: 33800K
    ..................................................  Size: 33850K
    ..................................................  Size: 33899K
    ..................................................  Size: 33950K
    ..................................................  Size: 34000K
    ..................................................  Size: 34049K
    ..................................................  Size: 34099K
    ..................................................  Size: 34149K
    ..................................................  Size: 34199K
    ..................................................  Size: 34249K
    ..................................................  Size: 34299K
    ..................................................  Size: 34350K
    ..................................................  Size: 34399K
    ..................................................  Size: 34449K
    ..................................................  Size: 34499K
    ..................................................  Size: 34550K
    ..................................................  Size: 34599K
    ..................................................  Size: 34650K
    ..................................................  Size: 34699K
    ..................................................  Size: 34750K
    ..................................................  Size: 34800K
    ..................................................  Size: 34850K
    ..................................................  Size: 34899K
    ..................................................  Size: 34949K
    ..................................................  Size: 34999K
    ..................................................  Size: 35050K
    ..................................................  Size: 35100K
    ..................................................  Size: 35149K
    ..................................................  Size: 35199K
    ..................................................  Size: 35250K
    ..................................................  Size: 35300K
    ..................................................  Size: 35349K
    ..................................................  Size: 35400K
    ..................................................  Size: 35449K
    ..................................................  Size: 35500K
    ......................... Size of output: 35524K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
ja_fortran/1.10.0
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0@tmp
SEMS_CMAKE_VERSION = 3.17.1
HISTCONTROL = ignoredups
SERIAL_CXX = clang++
PWD = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #416
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/clang/10.0.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_python_2 # 3264 (click to expand)

HUDSON_HOME = /var/lib/jenkins
TRILINOS_TARGET_BRANCH = develop
https_proxy = http://wwwproxy.sandia.gov:80
F90 = gfortran
SERIAL_F90 = gfortran
SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3
JOB_COOWNERS = prwolfe,trilinos
SERIAL_FC = gfortran
BUILD_CAUSE_MANUALTRIGGER = true
HUDSON_COOKIE = e19e23bc-dad4-44f0-b918-786b13d8b589
ftp_proxy = http://wwwproxy.sandia.gov:80/
QT_GRAPHICSSYSTEM_CHECKED = 1
SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-5-trilinos
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 51750 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-5-trilinos trilinos-CAPACITY trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_5
PATH = /projects/sierra/linux_rh7/install/Python/2.7.15/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 6761d1a2013f02edd5dfbefbb3c7f2f1e7c62d9e
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 3264
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0:sems-cmake/3.10.3:atdm-env:atdm-nCurrently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-7932-test-Trilinos_pullrequest_python_2-3264
Cur dir                  = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/pull_request_test
Parallel level           = 20
Testing Parallel level   = 20
skip_by_parts_submit     = OFF
skip_single_submit       = ON
skip_update_step         = ON
skip_upload_config_files = OFF
skip_clean_build_dir     = ON
Subproject count         = 1
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/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos/cmake/std/PullRequestLinuxPython2.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-5.novalocal&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_python_2-3264&field3=buildstamp&compare3=61&value3=20200829-0206-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_python_2-3264&field2=buildstamp&compare2=61&value2=20200829-0206-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_python_2-3264&field2=buildstamp&compare2=61&value2=20200829-0206-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ...................... Size of output: 21K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
inja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #3264
PULLREQUESTNUM = 7932

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_python_3 # 3285 (click to expand)

SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-8-trilinos
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 36168 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-8-trilinos trilinos-CAPACITY trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_8
PATH = /projects/sierra/linux_rh7/install/Python/3.6.3/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 6761d1a2013f02edd5dfbefbb3c7f2f1e7c62d9e
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 3285
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.Currently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-7932-test-Trilinos_pullrequest_python_3-3285
Cur dir                  = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/pull_request_test
Parallel level           = 20
Testing Parallel level   = 20
skip_by_parts_submit     = OFF
skip_single_submit       = ON
skip_update_step         = ON
skip_upload_config_files = OFF
skip_clean_build_dir     = ON
Subproject count         = 1
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/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxPython3.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-8.novalocal&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_python_3-3285&field3=buildstamp&compare3=61&value3=20200829-0206-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_python_3-3285&field2=buildstamp&compare2=61&value2=20200829-0206-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_python_3-3285&field2=buildstamp&compare2=61&value2=20200829-0206-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ...................... Size of output: 21K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0
0:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #3285
PULLREQUESTNUM = 7932

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 725, in
returnValue = run()
File "/scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 718, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/projects/sems/install/rhel7-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7932-test-Trilinos_pullrequest_python_3-3285', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-DTEST_PARALLEL_LEVEL=20', '-Dbuild_dir=/scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/pull_request_test', '-Dconfigure_script=/scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxPython3.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE


CDash Test Results for PR# 7932.


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: 7702
  • 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
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 7512
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5937
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 157
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1973
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 5269
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 418
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 3266
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 3287
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Using Repos:

Repo: TRILINOS (william76/Trilinos)
  • Branch: PRDriverMergeFix-20200828
  • SHA: 729d539
  • Mode: TEST_REPO

Pull Request Author: william76

@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: 7702
  • 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
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 7512
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5937
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 157
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1973
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 5269
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 418
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 3266
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 3287
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 729d539
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 7702 (click to expand)

    ..................................................  Size: 450K
    .......... Size of output: 459K
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: 1150K
    ..................................................  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: 1999K
    ..................................................  Size: 2049K
    ..................................................  Size: 2099K
    ..................................................  Size: 2149K
    ..................................................  Size: 2200K
    ..................................................  Size: 2249K
    ..................................................  Size: 2300K
    ..................................................  Size: 2350K
    ..................................................  Size: 2399K
    ..................................................  Size: 2449K
    ..................................................  Size: 2499K
    ..................................................  Size: 2550K
    ..................................................  Size: 2599K
    ..................................................  Size: 2649K
    ..................................................  Size: 2700K
    ..................................................  Size: 2749K
    ..................................................  Size: 2800K
    ..................................................  Size: 2850K
    ..................................................  Size: 2899K
    ..................................................  Size: 2949K
    ..................................................  Size: 2999K
    ..................................................  Size: 3049K
    ..................................................  Size: 3099K
    ..................................................  Size: 3149K
    ..................................................  Size: 3199K
    ..................................................  Size: 3249K
    ..................................................  Size: 3299K
    ..................................................  Size: 3349K
    ..................................................  Size: 3399K
    .......... Size of output: 3410K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
pullrequest_gcc_4.8.4@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #7702
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.8.4/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7932-test-Trilinos_pullrequest_intel_17.0.1-7512
Cur dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test
Parallel level = 20
Testing Parallel level = 10
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 60
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/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntelTestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic158&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_intel_17.0.1-7512&field3=buildstamp&compare3=61&value3=20200829-0734-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_intel_17.0.1-7512&field2=buildstamp&compare2=61&value2=20200829-0734-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_intel_17.0.1-7512&field2=buildstamp&compare2=61&value2=20200829-0734-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: 450K
............. Size of output: 462K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
................................. Size of output: 32K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
2edd5dfbefbb3c7f2f1e7c62d9e
SEMS_SUPERLU_LOCAL_PYTHON_VERSION = 2.7.5
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = icc
SEMS_SCOTCH_LOCAL_COMPILER_VERSION = 4.8.5
SEMS_ZLIB_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/zlib/1.2.8/intel/17.0.1/base/include
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
SEMS_SCOTCH_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/scotch/6.0.3/intel/17.0.1/mpich/3.2/nopthread_64bit_parallel
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 7512
SEMS_NETCDF_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/parallel/include
MKL_LIB = /projects/sems/install/rhel7-x86_64/sems/compiler/intel/17.0.1/base/mkl/lib/intel64
MODULE_VERSION_STACK = 3.2.10
SEMS_MPICH_ROOT = /projects/sems/install/rhel7-x86_64/sems/compiler/intel/17.0.1/mpich/3.2
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.8.5
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.7.5
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/parallel/lib
GIT_BRANCH = origin/develop
SEMS_INTEL_LOCAL_PYTHON_VERSION = 2.7.5
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.63.0/intel/17.0.1/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/intel/17.0.1/mpich/3.2/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/scotch/6.0.3/intel/17.0.1/mpich/3.2/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-intel/17.0.1:sems-mpich/3.2:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = icpc
PWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #7512
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/intel/17.0.1/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

    ..................................................  Size: 150K
    ..................................................  Size: 200K
    ..................................................  Size: 250K
    ..................................................  Size: 300K
    ..................................................  Size: 350K
    .................................... Size of output: 385K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ..................................................  Size: 49K
    ..................................................  Size: 99K
    ..................................................  Size: 149K
    ..................................................  Size: 200K
    ..................................................  Size: 249K
    ..................................................  Size: 299K
    ..................................................  Size: 349K
    ..................................................  Size: 399K
    ..................................................  Size: 449K
    ..................................................  Size: 499K
    ..................................................  Size: 549K
    ..................................................  Size: 599K
    ..................................................  Size: 649K
    ..................................................  Size: 699K
    ..................................................  Size: 749K
    ..................................................  Size: 799K
    ..................................................  Size: 849K
    ..................................................  Size: 899K
    ..................................................  Size: 949K
    ..................................................  Size: 999K
    ..................................................  Size: 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: 1699K
    ..................................................  Size: 1749K
    ..................................................  Size: 1799K
    ..................................................  Size: 1849K
    ..................................................  Size: 1899K
    ..................................................  Size: 1949K
    ..................................................  Size: 1999K
    ..................................................  Size: 2050K
    ..................................................  Size: 2099K
    ..................................................  Size: 2150K
    ..................................................  Size: 2199K
    ..................................................  Size: 2249K
    ..................................................  Size: 2299K
    ..................................................  Size: 2349K
    ..................................................  Size: 2400K
    ..................................................  Size: 2449K
    ..................................................  Size: 2499K
    ..................................................  Size: 2549K
    ..................................................  Size: 2599K
    ..................................................  Size: 2649K
    ..................................................  Size: 2699K
    ...................... Size of output: 2721K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/4.9.3/base/include
MODULE_VERSION_STACK = 3.2.10
JOB_COOWNERS_EMAILS = wcmclen@sandia.gov,trilinos@sandia.gov
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/4.9.3/base/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.63.0/gcc/4.9.3/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/gcc/4.9.3/base
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/base:sems-netcdf/4.7.3/base:sems-metis/5.1.0/base:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #5937
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.9.3/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

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

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/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7932-test-Trilinos_pullrequest_gcc_7.2.0_debug-157
Cur dir = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/pull_request_test
Parallel level = 20
Testing Parallel level = 10
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 60
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/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0DebugTestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_gcc_7.2.0_debug-157&field3=buildstamp&compare3=61&value3=20200829-0734-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_7.2.0_debug-157&field2=buildstamp&compare2=61&value2=20200829-0734-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_7.2.0_debug-157&field2=buildstamp&compare2=61&value2=20200829-0734-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: 445K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
................................ Size of output: 31K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
TROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #157
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/7.2.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 1973 (click to expand)

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7932-test-Trilinos_pullrequest_gcc_8.3.0-1973
Cur dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test
Parallel level = 20
Testing Parallel level = 10
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 60
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxGCC8.3.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic166&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_gcc_8.3.0-1973&field3=buildstamp&compare3=61&value3=20200829-0734-Pull Request-Experimental
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_8.3.0-1973&field2=buildstamp&compare2=61&value2=20200829-0734-Pull Request-Experimental
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_8.3.0-1973&field2=buildstamp&compare2=61&value2=20200829-0734-Pull Request-Experimental
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.................................................. Size: 200K
.................................................. Size: 250K
.................................................. Size: 300K
.................................................. Size: 350K
.................................................. Size: 400K
................................................ Size of output: 447K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
................................ Size of output: 31K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
= 3.2.10
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.8.5
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.7.5
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/8.3.0/openmpi/1.10.1/parallel/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.66.0/gcc/8.3.0/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/gcc/8.3.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/scotch/6.0.3/gcc/8.3.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/8.3.0:sems-openmpi/1.10.1:sems-boost/1.66.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.17.1:sems-ninja_fortran/1.10.0:atdm-env
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@tmp
SEMS_CMAKE_VERSION = 3.17.1
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #1973
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/8.3.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_cuda_9.2 # 5269 (click to expand)

    ..................................................  Size: 100K
    ..................................................  Size: 150K
    ..................................................  Size: 200K
    ..................................................  Size: 250K
    ..................................................  Size: 300K
    ..................................................  Size: 350K
    ..................................................  Size: 400K
    ........................................ Size of output: 439K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    ......................................... Size of output: 40K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
 ride12 ride12 ride12 ride12 ride12 ride12 ride12
METIS_ROOT = /home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
LSB_EXIT_PRE_ABORT = 99
TRILINOS_SOURCE_REPO = https://github.com/william76/Trilinos
PARMETIS_HOME = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
FC_VERSION = 7.2.0
LSB_JOBFILENAME = /ascldap/users/trilinos/.lsbatch/1598686508.6735
BLAS_ROOT = /home/projects/ppc64le-pwr8/netlib/3.8.0/gcc/7.2.0
GIT_CHECKOUT_DIR = Trilinos
LSB_AFFINITY_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1598686508.6735.hostAffinityFile
PARMETIS_ROOT = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
LSF_ENVDIR = /opt/lsf/conf
MPI_VENDOR = openmpi
PYTHON = /home/projects/ppc64le/python/2.7.12/bin/python
CXX_VENDOR = gcc
HDF5_ROOT = /home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
HOSTTYPE = LINUXPPC64LE
SSH_CLIENT = 205.137.81.17 40654 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
LSF_LIM_API_NTRIES = 1
PATH = /ascldap/users/rabartl/install/white-ride/cmake-3.11.2/bin:/ascldap/users/rabartl/install/white-ride/ninja-1.8.2/bin:/home/projects/ppc64le/valgrind/3.12.0/bin:/home/projects/ppc64le/cmake/3.9.6/bin:/home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0/bin:/home/projects/ppc64le-pwr8-nvidia/netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le/java/ibm/sdk/8.0.0/bin:/home/projects/ppc64le/papi/5.5.1/bin:/home/projects/ppc64le/gcc/7.2.0/bin:/home/projects/ppc64le/binutils/2.30.0/bin:/home/projects/ppc64le-pwr8-nvidia/cuda/9.2.88/bin:/home/projects/ppc64le/python/2.7.12/bin:/home/projects/ppc64le/git/2.10.1/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/etc:/usr/local/bin:/usr/bin:/opt/ibutils/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
LSB_QUEUE = rhel7F
LSF_JOB_TIMESTAMP_VALUE = 1598686508
LSB_EXEC_HOSTTYPE = LINUXPPC64LE
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 6761d1a2013f02edd5dfbefbb3c7f2f1e7c62d9e
LSB_DJOB_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1598686508.6735.hostfile
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
LSF_LIBDIR = /opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/lib
CGNS_VERSION = 20180521
LSB_SUB_USER = trilinos
NODE_LABELS = ride-trilinos trilinos-ride
GIT_BRANCH_2 = origin/pull_request_changes
GIT_CHECKOUT_DIR_1 = TFW_single_configure_support_scripts
GIT_CHECKOUT_DIR_2 = TFW_testing_single_configure_prototype
JOB_OWNER_EMAIL = HRSwant@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 5269
SBD_KRB5CCNAME_VAL = 
LSB_RES_GET_FANOUT_INFO = Y
RUN_DISPLAY_URL = https://ascic-jenkins.sandia.gov/job/trilinos-folder/job/Trilinos_pullrequest_cuda_9.2/5269/display/redirect
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
LSB_BATCH_JID = 6735
MPI_HOME = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
SUPERLU_HOME = /home/projects/ppc64le-pwr8/superlu/4.3.0/gcc/7.2.0
F77_VENDOR = gcc
KRB5CCNAME = FILE:/tmp/krb5cc_91724_wQFUVKfdGI
BINUTILS_VERSION = 2.30.0
GIT_BRANCH = origin/develop
CMAKE_ROOT = /home/projects/ppc64le/cmake/3.9.6
BOOST_ROOT = /home/projects/ppc64le-pwr8/boost/1.65.1/gcc/7.2.0
VALGRIND_ROOT = /home/projects/ppc64le/valgrind/3.12.0
MPIF77 = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin/mpif77
PARMETIS_VERSION = 4.0.3
LSB_JOBNAME = trilinos-folder/Trilinos_pullrequest_cuda_9.2
LOADEDMODULES = git/2.10.1:python/2.7.12:cuda/9.2.88:binutils/2.30.0:gcc/7.2.0:papi/5.5.1:java/ibm/sdk/8.0.0:openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:zlib/1.2.8:hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cgns/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netlib/3.8.0/gcc/7.2.0:superlu/4.3.0/gcc/7.2.0:boost/1.65.1/gcc/7.2.0:metis/5.0.1/gcc/7.2.0:parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cmake/3.9.6:valgrind/3.12.0:devpack/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
WORKSPACE_TMP = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@tmp
GIT_BRANCH_1 = origin/master
CUDA_MANAGED_FORCE_DEVICE_ALLOC = 1
HISTCONTROL = ignoredups
PWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
LS_EXECCWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #5269
CXX_VERSION = 7.2.0
PYTHON_ROOT = /home/projects/ppc64le/python/2.7.12
OMPI_CXX = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/packages/kokkos/bin/nvcc_wrapper
SUPERLU_VERSION = 4.3.0
PULLREQUESTNUM = 7932
BINARY_TYPE_HPC = 

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_clang_10.0.0 # 418 (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/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7932-test-Trilinos_pullrequest_clang_10.0.0-418
Cur dir = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test
Parallel level = 20
Testing Parallel level = 20
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 60
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake
-C "/scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos/cmake/std/PullRequestLinuxClang10.0.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-9.novalocal&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_clang_10.0.0-418&field3=buildstamp&compare3=61&value3=20200829-0735-Pull Request-Experimental
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_clang_10.0.0-418&field2=buildstamp&compare2=61&value2=20200829-0735-Pull Request-Experimental
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_clang_10.0.0-418&field2=buildstamp&compare2=61&value2=20200829-0735-Pull Request-Experimental
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.................................................. Size: 200K
.................................................. Size: 250K
.................................................. Size: 300K
.................................................. Size: 350K
.................................................. Size: 400K
............................................ Size of output: 443K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
................................ Size of output: 31K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
ja_fortran/1.10.0
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0@tmp
SEMS_CMAKE_VERSION = 3.17.1
HISTCONTROL = ignoredups
SERIAL_CXX = clang++
PWD = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #418
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/clang/10.0.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_python_2 # 3266 (click to expand)

HUDSON_HOME = /var/lib/jenkins
TRILINOS_TARGET_BRANCH = develop
https_proxy = http://wwwproxy.sandia.gov:80
F90 = gfortran
SERIAL_F90 = gfortran
SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3
JOB_COOWNERS = prwolfe,trilinos
SERIAL_FC = gfortran
BUILD_CAUSE_MANUALTRIGGER = true
HUDSON_COOKIE = 3427aa73-6735-4827-a18d-f01e6c06ce37
ftp_proxy = http://wwwproxy.sandia.gov:80/
QT_GRAPHICSSYSTEM_CHECKED = 1
SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-5-trilinos
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 51750 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-5-trilinos trilinos-CAPACITY trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_5
PATH = /projects/sierra/linux_rh7/install/Python/2.7.15/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 6761d1a2013f02edd5dfbefbb3c7f2f1e7c62d9e
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 3266
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0:sems-cmake/3.10.3:atdm-env:atdm-nCurrently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-7932-test-Trilinos_pullrequest_python_2-3266
Cur dir                  = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/pull_request_test
Parallel level           = 20
Testing Parallel level   = 20
skip_by_parts_submit     = OFF
skip_single_submit       = ON
skip_update_step         = ON
skip_upload_config_files = OFF
skip_clean_build_dir     = ON
Subproject count         = 1
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/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos/cmake/std/PullRequestLinuxPython2.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-5.novalocal&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_python_2-3266&field3=buildstamp&compare3=61&value3=20200829-0735-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_python_2-3266&field2=buildstamp&compare2=61&value2=20200829-0735-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_python_2-3266&field2=buildstamp&compare2=61&value2=20200829-0735-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ...................... Size of output: 21K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
inja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #3266
PULLREQUESTNUM = 7932

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_python_3 # 3287 (click to expand)

SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-8-trilinos
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 36168 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-8-trilinos trilinos-CAPACITY trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_8
PATH = /projects/sierra/linux_rh7/install/Python/3.6.3/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 6761d1a2013f02edd5dfbefbb3c7f2f1e7c62d9e
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 3287
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.Currently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-7932-test-Trilinos_pullrequest_python_3-3287
Cur dir                  = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/pull_request_test
Parallel level           = 20
Testing Parallel level   = 20
skip_by_parts_submit     = OFF
skip_single_submit       = ON
skip_update_step         = ON
skip_upload_config_files = OFF
skip_clean_build_dir     = ON
Subproject count         = 1
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/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxPython3.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-8.novalocal&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_python_3-3287&field3=buildstamp&compare3=61&value3=20200829-0735-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_python_3-3287&field2=buildstamp&compare2=61&value2=20200829-0735-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_python_3-3287&field2=buildstamp&compare2=61&value2=20200829-0735-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ...................... Size of output: 21K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0
0:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #3287
PULLREQUESTNUM = 7932

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 725, in
returnValue = run()
File "/scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 718, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/projects/sems/install/rhel7-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7932-test-Trilinos_pullrequest_python_3-3287', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-DTEST_PARALLEL_LEVEL=20', '-Dbuild_dir=/scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/pull_request_test', '-Dconfigure_script=/scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxPython3.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE


CDash Test Results for PR# 7932.


Wiki: How to Reproduce PR Testing Builds and Errors.

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

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

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

Pull Request Auto Testing STARTING (click to expand)

Build Information

Test Name: Trilinos_pullrequest_gcc_4.8.4

  • Build Num: 7703
  • 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
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 7513
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5938
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 158
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1974
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 5270
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 419
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 3267
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 3288
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Using Repos:

Repo: TRILINOS (william76/Trilinos)
  • Branch: PRDriverMergeFix-20200828
  • SHA: 39f9be1
  • Mode: TEST_REPO

Pull Request Author: william76

@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: 7703
  • 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
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 7513
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5938
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 158
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1974
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 5270
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 419
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 3267
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 3288
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 7703 (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/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos

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

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/tr-test-7/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='ALL_PACKAGES'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7932-test-Trilinos_pullrequest_gcc_4.8.4-7703
Cur dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test
Parallel level = 20
Testing Parallel level = 10
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 60
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/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-7.novalocal&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_gcc_4.8.4-7703&field3=buildstamp&compare3=61&value3=20200829-1304-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_4.8.4-7703&field2=buildstamp&compare2=61&value2=20200829-1304-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_4.8.4-7703&field2=buildstamp&compare2=61&value2=20200829-1304-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: 450K
.......... Size of output: 459K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................. Size of output: 33K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
_pullrequest_gcc_4.8.4@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #7703
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.8.4/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7932-test-Trilinos_pullrequest_intel_17.0.1-7513
Cur dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test
Parallel level = 20
Testing Parallel level = 10
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 60
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/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntelTestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic158&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_intel_17.0.1-7513&field3=buildstamp&compare3=61&value3=20200829-1304-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_intel_17.0.1-7513&field2=buildstamp&compare2=61&value2=20200829-1304-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_intel_17.0.1-7513&field2=buildstamp&compare2=61&value2=20200829-1304-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: 450K
............. Size of output: 462K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
................................. Size of output: 32K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
2edd5dfbefbb3c7f2f1e7c62d9e
SEMS_SUPERLU_LOCAL_PYTHON_VERSION = 2.7.5
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = icc
SEMS_SCOTCH_LOCAL_COMPILER_VERSION = 4.8.5
SEMS_ZLIB_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/zlib/1.2.8/intel/17.0.1/base/include
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
SEMS_SCOTCH_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/scotch/6.0.3/intel/17.0.1/mpich/3.2/nopthread_64bit_parallel
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 7513
SEMS_NETCDF_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/parallel/include
MKL_LIB = /projects/sems/install/rhel7-x86_64/sems/compiler/intel/17.0.1/base/mkl/lib/intel64
MODULE_VERSION_STACK = 3.2.10
SEMS_MPICH_ROOT = /projects/sems/install/rhel7-x86_64/sems/compiler/intel/17.0.1/mpich/3.2
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.8.5
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.7.5
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/parallel/lib
GIT_BRANCH = origin/develop
SEMS_INTEL_LOCAL_PYTHON_VERSION = 2.7.5
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.63.0/intel/17.0.1/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/intel/17.0.1/mpich/3.2/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/scotch/6.0.3/intel/17.0.1/mpich/3.2/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-intel/17.0.1:sems-mpich/3.2:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = icpc
PWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #7513
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/intel/17.0.1/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

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

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

Wrote file 'changed-files.txt'

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

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7932-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5938
Cur dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test
Parallel level = 20
Testing Parallel level = 10
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 60
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/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxGCC4.9.3TestingSettingsSERIAL.cmake"
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic166&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5938&field3=buildstamp&compare3=61&value3=20200829-1304-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5938&field2=buildstamp&compare2=61&value2=20200829-1304-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5938&field2=buildstamp&compare2=61&value2=20200829-1304-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: 385K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
................................ Size of output: 31K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/4.9.3/base/include
MODULE_VERSION_STACK = 3.2.10
JOB_COOWNERS_EMAILS = wcmclen@sandia.gov,trilinos@sandia.gov
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/4.9.3/base/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.63.0/gcc/4.9.3/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/gcc/4.9.3/base
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/base:sems-netcdf/4.7.3/base:sems-metis/5.1.0/base:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #5938
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.9.3/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

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

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/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7932-test-Trilinos_pullrequest_gcc_7.2.0_debug-158
Cur dir = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/pull_request_test
Parallel level = 20
Testing Parallel level = 10
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 60
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/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0DebugTestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_gcc_7.2.0_debug-158&field3=buildstamp&compare3=61&value3=20200829-1305-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_7.2.0_debug-158&field2=buildstamp&compare2=61&value2=20200829-1305-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_7.2.0_debug-158&field2=buildstamp&compare2=61&value2=20200829-1305-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: 445K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
................................ Size of output: 31K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
TROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #158
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/7.2.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 1974 (click to expand)

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7932-test-Trilinos_pullrequest_gcc_8.3.0-1974
Cur dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test
Parallel level = 20
Testing Parallel level = 10
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 60
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxGCC8.3.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic166&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_gcc_8.3.0-1974&field3=buildstamp&compare3=61&value3=20200829-1305-Pull Request-Experimental
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_8.3.0-1974&field2=buildstamp&compare2=61&value2=20200829-1305-Pull Request-Experimental
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_8.3.0-1974&field2=buildstamp&compare2=61&value2=20200829-1305-Pull Request-Experimental
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.................................................. Size: 200K
.................................................. Size: 250K
.................................................. Size: 300K
.................................................. Size: 350K
.................................................. Size: 400K
................................................ Size of output: 447K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
................................ Size of output: 31K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
= 3.2.10
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.8.5
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.7.5
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/8.3.0/openmpi/1.10.1/parallel/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.66.0/gcc/8.3.0/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/gcc/8.3.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/scotch/6.0.3/gcc/8.3.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/8.3.0:sems-openmpi/1.10.1:sems-boost/1.66.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.17.1:sems-ninja_fortran/1.10.0:atdm-env
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@tmp
SEMS_CMAKE_VERSION = 3.17.1
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #1974
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/8.3.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_cuda_9.2 # 5270 (click to expand)

    .............................. Size of output: 30K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0
ride12 ride12 ride12 ride12 ride12 ride12 ride12
METIS_ROOT = /home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
LSB_EXIT_PRE_ABORT = 99
TRILINOS_SOURCE_REPO = https://github.com/william76/Trilinos
PARMETIS_HOME = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
FC_VERSION = 7.2.0
LSB_JOBFILENAME = /ascldap/users/trilinos/.lsbatch/1598706342.6744
BLAS_ROOT = /home/projects/ppc64le-pwr8/netlib/3.8.0/gcc/7.2.0
GIT_CHECKOUT_DIR = Trilinos
LSB_AFFINITY_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1598706342.6744.hostAffinityFile
PARMETIS_ROOT = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
LSF_ENVDIR = /opt/lsf/conf
MPI_VENDOR = openmpi
PYTHON = /home/projects/ppc64le/python/2.7.12/bin/python
CXX_VENDOR = gcc
HDF5_ROOT = /home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
HOSTTYPE = LINUXPPC64LE
SSH_CLIENT = 205.137.81.17 40654 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
LSF_LIM_API_NTRIES = 1
PATH = /ascldap/users/rabartl/install/white-ride/cmake-3.11.2/bin:/ascldap/users/rabartl/install/white-ride/ninja-1.8.2/bin:/home/projects/ppc64le/valgrind/3.12.0/bin:/home/projects/ppc64le/cmake/3.9.6/bin:/home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0/bin:/home/projects/ppc64le-pwr8-nvidia/netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le/java/ibm/sdk/8.0.0/bin:/home/projects/ppc64le/papi/5.5.1/bin:/home/projects/ppc64le/gcc/7.2.0/bin:/home/projects/ppc64le/binutils/2.30.0/bin:/home/projects/ppc64le-pwr8-nvidia/cuda/9.2.88/bin:/home/projects/ppc64le/python/2.7.12/bin:/home/projects/ppc64le/git/2.10.1/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/etc:/usr/local/bin:/usr/bin:/opt/ibutils/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
LSB_QUEUE = rhel7F
LSF_JOB_TIMESTAMP_VALUE = 1598706342
LSB_EXEC_HOSTTYPE = LINUXPPC64LE
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 6761d1a2013f02edd5dfbefbb3c7f2f1e7c62d9e
LSB_DJOB_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1598706342.6744.hostfile
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
LSF_LIBDIR = /opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/lib
CGNS_VERSION = 20180521
LSB_SUB_USER = trilinos
NODE_LABELS = ride-trilinos trilinos-ride
GIT_BRANCH_2 = origin/pull_request_changes
GIT_CHECKOUT_DIR_1 = TFW_single_configure_support_scripts
GIT_CHECKOUT_DIR_2 = TFW_testing_single_configure_prototype
JOB_OWNER_EMAIL = HRSwant@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 5270
SBD_KRB5CCNAME_VAL =
LSB_RES_GET_FANOUT_INFO = Y
RUN_DISPLAY_URL = https://ascic-jenkins.sandia.gov/job/trilinos-folder/job/Trilinos_pullrequest_cuda_9.2/5270/display/redirect
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
LSB_BATCH_JID = 6744
MPI_HOME = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
SUPERLU_HOME = /home/projects/ppc64le-pwr8/superlu/4.3.0/gcc/7.2.0
F77_VENDOR = gcc
KRB5CCNAME = FILE:/tmp/krb5cc_91724_wQFUVKfdGI
BINUTILS_VERSION = 2.30.0
GIT_BRANCH = origin/develop
CMAKE_ROOT = /home/projects/ppc64le/cmake/3.9.6
BOOST_ROOT = /home/projects/ppc64le-pwr8/boost/1.65.1/gcc/7.2.0
VALGRIND_ROOT = /home/projects/ppc64le/valgrind/3.12.0
MPIF77 = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin/mpif77
PARMETIS_VERSION = 4.0.3
LSB_JOBNAME = trilinos-folder/Trilinos_pullrequest_cuda_9.2
LOADEDMODULES = git/2.10.1:python/2.7.12:cuda/9.2.88:binutils/2.30.0:gcc/7.2.0:papi/5.5.1:java/ibm/sdk/8.0.0:openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:zlib/1.2.8:hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cgns/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netlib/3.8.0/gcc/7.2.0:superlu/4.3.0/gcc/7.2.0:boost/1.65.1/gcc/7.2.0:metis/5.0.1/gcc/7.2.0:parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cmake/3.9.6:valgrind/3.12.0:devpack/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
WORKSPACE_TMP = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@tmp
GIT_BRANCH_1 = origin/master
CUDA_MANAGED_FORCE_DEVICE_ALLOC = 1
HISTCONTROL = ignoredups
PWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
LS_EXECCWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #5270
CXX_VERSION = 7.2.0
PYTHON_ROOT = /home/projects/ppc64le/python/2.7.12
OMPI_CXX = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/packages/kokkos/bin/nvcc_wrapper
SUPERLU_VERSION = 4.3.0
PULLREQUESTNUM = 7932
BINARY_TYPE_HPC =

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 725, in
returnValue = run()
File "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 718, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/home/projects/ppc64le/python/2.7.12/lib/python2.7/subprocess.py", line 541, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7932-test-Trilinos_pullrequest_cuda_9.2-5270', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=64', '-DTEST_PARALLEL_LEVEL=8', '-Dbuild_dir=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/pull_request_test', '-Dconfigure_script=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxCuda9.2TestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_clang_10.0.0 # 419 (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/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7932-test-Trilinos_pullrequest_clang_10.0.0-419
Cur dir = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test
Parallel level = 20
Testing Parallel level = 20
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 60
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake
-C "/scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos/cmake/std/PullRequestLinuxClang10.0.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-9.novalocal&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_clang_10.0.0-419&field3=buildstamp&compare3=61&value3=20200829-1305-Pull Request-Experimental
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_clang_10.0.0-419&field2=buildstamp&compare2=61&value2=20200829-1305-Pull Request-Experimental
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_clang_10.0.0-419&field2=buildstamp&compare2=61&value2=20200829-1305-Pull Request-Experimental
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.................................................. Size: 200K
.................................................. Size: 250K
.................................................. Size: 300K
.................................................. Size: 350K
.................................................. Size: 400K
............................................ Size of output: 443K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
................................ Size of output: 31K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
ja_fortran/1.10.0
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0@tmp
SEMS_CMAKE_VERSION = 3.17.1
HISTCONTROL = ignoredups
SERIAL_CXX = clang++
PWD = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #419
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/clang/10.0.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_python_2 # 3267 (click to expand)

HUDSON_HOME = /var/lib/jenkins
TRILINOS_TARGET_BRANCH = develop
https_proxy = http://wwwproxy.sandia.gov:80
F90 = gfortran
SERIAL_F90 = gfortran
SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3
JOB_COOWNERS = prwolfe,trilinos
SERIAL_FC = gfortran
BUILD_CAUSE_MANUALTRIGGER = true
HUDSON_COOKIE = 0e4822f7-e13e-496f-b2e6-2563855288cb
ftp_proxy = http://wwwproxy.sandia.gov:80/
QT_GRAPHICSSYSTEM_CHECKED = 1
SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-5-trilinos
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 51750 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-5-trilinos trilinos-CAPACITY trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_5
PATH = /projects/sierra/linux_rh7/install/Python/2.7.15/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 6761d1a2013f02edd5dfbefbb3c7f2f1e7c62d9e
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 3267
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0:sems-cmake/3.10.3:atdm-env:atdm-niCurrently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-7932-test-Trilinos_pullrequest_python_2-3267
Cur dir                  = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/pull_request_test
Parallel level           = 20
Testing Parallel level   = 20
skip_by_parts_submit     = OFF
skip_single_submit       = ON
skip_update_step         = ON
skip_upload_config_files = OFF
skip_clean_build_dir     = ON
Subproject count         = 1
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/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos/cmake/std/PullRequestLinuxPython2.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-5.novalocal&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_python_2-3267&field3=buildstamp&compare3=61&value3=20200829-1306-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_python_2-3267&field2=buildstamp&compare2=61&value2=20200829-1306-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_python_2-3267&field2=buildstamp&compare2=61&value2=20200829-1306-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ...................... Size of output: 21K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
nja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #3267
PULLREQUESTNUM = 7932

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_python_3 # 3288 (click to expand)

HUDSON_HOME = /var/lib/jenkins
TRILINOS_TARGET_BRANCH = develop
https_proxy = http://wwwproxy.sandia.gov:80
F90 = gfortran
SERIAL_F90 = gfortran
SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3
JOB_COOWNERS = prwolfe,trilinos
SERIAL_FC = gfortran
BUILD_CAUSE_MANUALTRIGGER = true
HUDSON_COOKIE = 19311e59-49d8-48c6-86ef-5ca3e697e2d5
ftp_proxy = http://wwwproxy.sandia.gov:80/
QT_GRAPHICSSYSTEM_CHECKED = 1
SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-8-trilinos
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 36168 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-8-trilinos trilinos-CAPACITY trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_8
PATH = /projects/sierra/linux_rh7/install/Python/3.6.3/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 6761d1a2013f02edd5dfbefbb3c7f2f1e7c62d9e
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 3288
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.Currently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-7932-test-Trilinos_pullrequest_python_3-3288
Cur dir                  = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/pull_request_test
Parallel level           = 20
Testing Parallel level   = 20
skip_by_parts_submit     = OFF
skip_single_submit       = ON
skip_update_step         = ON
skip_upload_config_files = OFF
skip_clean_build_dir     = ON
Subproject count         = 1
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/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxPython3.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-8.novalocal&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_python_3-3288&field3=buildstamp&compare3=61&value3=20200829-1306-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_python_3-3288&field2=buildstamp&compare2=61&value2=20200829-1306-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_python_3-3288&field2=buildstamp&compare2=61&value2=20200829-1306-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ...................... Size of output: 21K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
0:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #3288
PULLREQUESTNUM = 7932

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS


CDash Test Results for PR# 7932.


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 Aug 29, 2020
@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: 7704
  • 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
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 7514
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5939
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 159
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1975
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 5271
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 420
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 3268
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 3289
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Using Repos:

Repo: TRILINOS (william76/Trilinos)
  • Branch: PRDriverMergeFix-20200828
  • SHA: 39f9be1
  • Mode: TEST_REPO

Pull Request Author: william76

@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: 7704
  • 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
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 7514
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5939
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 159
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1975
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 5271
  • Status: FAILED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 420
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 3268
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 3289
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a
Console Output (last 100 lines) : Trilinos_pullrequest_gcc_4.8.4 # 7704 (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/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos

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

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/tr-test-7/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='ALL_PACKAGES'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7932-test-Trilinos_pullrequest_gcc_4.8.4-7704
Cur dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/pull_request_test
Parallel level = 20
Testing Parallel level = 10
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 60
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/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos/cmake/std/PullRequestLinuxGCC4.8.4TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-7.novalocal&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_gcc_4.8.4-7704&field3=buildstamp&compare3=61&value3=20200829-1704-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_4.8.4-7704&field2=buildstamp&compare2=61&value2=20200829-1704-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_4.8.4-7704&field2=buildstamp&compare2=61&value2=20200829-1704-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: 450K
.......... Size of output: 459K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
.................................. Size of output: 33K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
_pullrequest_gcc_4.8.4@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #7704
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.8.4/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-7/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.8.4/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7932-test-Trilinos_pullrequest_intel_17.0.1-7514
Cur dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/pull_request_test
Parallel level = 20
Testing Parallel level = 10
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 60
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/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos/cmake/std/PullRequestLinuxIntelTestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic158&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_intel_17.0.1-7514&field3=buildstamp&compare3=61&value3=20200829-1704-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_intel_17.0.1-7514&field2=buildstamp&compare2=61&value2=20200829-1704-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_intel_17.0.1-7514&field2=buildstamp&compare2=61&value2=20200829-1704-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: 450K
............. Size of output: 462K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
................................. Size of output: 32K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
2edd5dfbefbb3c7f2f1e7c62d9e
SEMS_SUPERLU_LOCAL_PYTHON_VERSION = 2.7.5
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = icc
SEMS_SCOTCH_LOCAL_COMPILER_VERSION = 4.8.5
SEMS_ZLIB_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/zlib/1.2.8/intel/17.0.1/base/include
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
SEMS_SCOTCH_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/scotch/6.0.3/intel/17.0.1/mpich/3.2/nopthread_64bit_parallel
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 7514
SEMS_NETCDF_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/parallel/include
MKL_LIB = /projects/sems/install/rhel7-x86_64/sems/compiler/intel/17.0.1/base/mkl/lib/intel64
MODULE_VERSION_STACK = 3.2.10
SEMS_MPICH_ROOT = /projects/sems/install/rhel7-x86_64/sems/compiler/intel/17.0.1/mpich/3.2
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.8.5
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.7.5
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/intel/17.0.1/mpich/3.2/parallel/lib
GIT_BRANCH = origin/develop
SEMS_INTEL_LOCAL_PYTHON_VERSION = 2.7.5
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.63.0/intel/17.0.1/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/intel/17.0.1/mpich/3.2/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/scotch/6.0.3/intel/17.0.1/mpich/3.2/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-intel/17.0.1:sems-mpich/3.2:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = icpc
PWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #7514
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/intel/17.0.1/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/ascic158/workspace/trilinos-folder/Trilinos_pullrequest_intel_17.0.1/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

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

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

Wrote file 'changed-files.txt'

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

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7932-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5939
Cur dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/pull_request_test
Parallel level = 20
Testing Parallel level = 10
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 60
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/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos/cmake/std/PullRequestLinuxGCC4.9.3TestingSettingsSERIAL.cmake"
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic166&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5939&field3=buildstamp&compare3=61&value3=20200829-1704-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5939&field2=buildstamp&compare2=61&value2=20200829-1704-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_4.9.3_SERIAL-5939&field2=buildstamp&compare2=61&value2=20200829-1704-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: 385K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
................................ Size of output: 31K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/4.9.3/base/include
MODULE_VERSION_STACK = 3.2.10
JOB_COOWNERS_EMAILS = wcmclen@sandia.gov,trilinos@sandia.gov
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/4.9.3/base/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.63.0/gcc/4.9.3/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/gcc/4.9.3/base
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/4.9.3:sems-boost/1.63.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/base:sems-netcdf/4.7.3/base:sems-metis/5.1.0/base:sems-superlu/4.3/base:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #5939
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/4.9.3/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_4.9.3_SERIAL/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

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

Current directory: /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7932-test-Trilinos_pullrequest_gcc_7.2.0_debug-159
Cur dir = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/pull_request_test
Parallel level = 20
Testing Parallel level = 10
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 60
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/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0DebugTestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-4.novalocal&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_gcc_7.2.0_debug-159&field3=buildstamp&compare3=61&value3=20200829-1705-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_7.2.0_debug-159&field2=buildstamp&compare2=61&value2=20200829-1705-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_7.2.0_debug-159&field2=buildstamp&compare2=61&value2=20200829-1705-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: 445K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
................................ Size of output: 31K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
Test failed with error -1

test submit error = 0
File upload submit error = 0
TROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #159
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/7.2.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 725, in
returnValue = run()
File "/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 718, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/projects/sems/install/rhel7-x86_64/sems/compiler/python/2.7.9/lib/python2.7/subprocess.py", line 540, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7932-test-Trilinos_pullrequest_gcc_7.2.0_debug-159', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=20', '-DTEST_PARALLEL_LEVEL=10', '-Dbuild_dir=/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/pull_request_test', '-Dconfigure_script=/scratch/trilinos/jenkins/tr-test-4/workspace/trilinos-folder/Trilinos_pullrequest_gcc_7.2.0_debug/Trilinos/cmake/std/PullRequestLinuxGCC7.2.0DebugTestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_gcc_8.3.0 # 1975 (click to expand)

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7932-test-Trilinos_pullrequest_gcc_8.3.0-1975
Cur dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/pull_request_test
Parallel level = 20
Testing Parallel level = 10
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 60
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos/cmake/std/PullRequestLinuxGCC8.3.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=ascic166&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_gcc_8.3.0-1975&field3=buildstamp&compare3=61&value3=20200829-1705-Pull Request-Experimental
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_8.3.0-1975&field2=buildstamp&compare2=61&value2=20200829-1705-Pull Request-Experimental
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_gcc_8.3.0-1975&field2=buildstamp&compare2=61&value2=20200829-1705-Pull Request-Experimental
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.................................................. Size: 200K
.................................................. Size: 250K
.................................................. Size: 300K
.................................................. Size: 350K
.................................................. Size: 400K
................................................ Size of output: 447K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
................................ Size of output: 31K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
= 3.2.10
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
SEMS_PARMETIS_LOCAL_COMPILER_VERSION = 4.8.5
SEMS_PARMETIS_LOCAL_PYTHON_VERSION = 2.7.5
SEMS_NETCDF_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/netcdf/4.7.3/gcc/8.3.0/openmpi/1.10.1/parallel/lib
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_BOOST_LIBRARY_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/boost/1.66.0/gcc/8.3.0/base/lib
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
SNLSYSTEM = cee
MPIF77 = mpif77
SEMS_HDF5_ROOT = /projects/sems/install/rhel7-x86_64/sems/tpl/hdf5/1.10.6/gcc/8.3.0/openmpi/1.10.1/parallel
SEMS_SCOTCH_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/scotch/6.0.3/gcc/8.3.0/openmpi/1.10.1/nopthread_64bit_parallel/include
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-python/2.7.9:sems-gcc/8.3.0:sems-openmpi/1.10.1:sems-boost/1.66.0/base:sems-zlib/1.2.8/base:sems-hdf5/1.10.6/parallel:sems-netcdf/4.7.3/parallel:sems-parmetis/4.0.3/parallel:sems-scotch/6.0.3/nopthread_64bit_parallel:sems-superlu/4.3/base:sems-cmake/3.17.1:sems-ninja_fortran/1.10.0:atdm-env
WORKSPACE_TMP = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0@tmp
SEMS_CMAKE_VERSION = 3.17.1
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #1975
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/gcc/8.3.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/ascic166/workspace/trilinos-folder/Trilinos_pullrequest_gcc_8.3.0/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_cuda_9.2 # 5271 (click to expand)

    .............................. Size of output: 30K
Build succeeded.
build submit error = 0
Starting testing step.
CMake Error at /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype/simple_testing.cmake:218 (message):
  Test failed with error -1

test submit error = 0
File upload submit error = 0
ride12 ride12 ride12 ride12 ride12 ride12 ride12
METIS_ROOT = /home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
LSB_EXIT_PRE_ABORT = 99
TRILINOS_SOURCE_REPO = https://github.com/william76/Trilinos
PARMETIS_HOME = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
FC_VERSION = 7.2.0
LSB_JOBFILENAME = /ascldap/users/trilinos/.lsbatch/1598720750.6748
BLAS_ROOT = /home/projects/ppc64le-pwr8/netlib/3.8.0/gcc/7.2.0
GIT_CHECKOUT_DIR = Trilinos
LSB_AFFINITY_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1598720750.6748.hostAffinityFile
PARMETIS_ROOT = /home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
LSF_ENVDIR = /opt/lsf/conf
MPI_VENDOR = openmpi
PYTHON = /home/projects/ppc64le/python/2.7.12/bin/python
CXX_VENDOR = gcc
HDF5_ROOT = /home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
HOSTTYPE = LINUXPPC64LE
SSH_CLIENT = 205.137.81.17 40654 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
LSF_LIM_API_NTRIES = 1
PATH = /ascldap/users/rabartl/install/white-ride/cmake-3.11.2/bin:/ascldap/users/rabartl/install/white-ride/ninja-1.8.2/bin:/home/projects/ppc64le/valgrind/3.12.0/bin:/home/projects/ppc64le/cmake/3.9.6/bin:/home/projects/ppc64le-pwr8-nvidia/parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8/metis/5.0.1/gcc/7.2.0/bin:/home/projects/ppc64le-pwr8-nvidia/netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin:/home/projects/ppc64le/java/ibm/sdk/8.0.0/bin:/home/projects/ppc64le/papi/5.5.1/bin:/home/projects/ppc64le/gcc/7.2.0/bin:/home/projects/ppc64le/binutils/2.30.0/bin:/home/projects/ppc64le-pwr8-nvidia/cuda/9.2.88/bin:/home/projects/ppc64le/python/2.7.12/bin:/home/projects/ppc64le/git/2.10.1/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/bin:/opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/etc:/usr/local/bin:/usr/bin:/opt/ibutils/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
LSB_QUEUE = rhel7F
LSF_JOB_TIMESTAMP_VALUE = 1598720750
LSB_EXEC_HOSTTYPE = LINUXPPC64LE
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 6761d1a2013f02edd5dfbefbb3c7f2f1e7c62d9e
LSB_DJOB_HOSTFILE = /ascldap/users/trilinos/.lsbatch/1598720750.6748.hostfile
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
LSF_LIBDIR = /opt/lsf/10.1/linux3.10-glibc2.17-ppc64le/lib
CGNS_VERSION = 20180521
LSB_SUB_USER = trilinos
NODE_LABELS = ride-trilinos trilinos-ride
GIT_BRANCH_2 = origin/pull_request_changes
GIT_CHECKOUT_DIR_1 = TFW_single_configure_support_scripts
GIT_CHECKOUT_DIR_2 = TFW_testing_single_configure_prototype
JOB_OWNER_EMAIL = HRSwant@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 5271
SBD_KRB5CCNAME_VAL =
LSB_RES_GET_FANOUT_INFO = Y
RUN_DISPLAY_URL = https://ascic-jenkins.sandia.gov/job/trilinos-folder/job/Trilinos_pullrequest_cuda_9.2/5271/display/redirect
JOB_COOWNERS_EMAILS = HRSwant@sandia.gov,trilinos@sandia.gov
LSB_BATCH_JID = 6748
MPI_HOME = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
SUPERLU_HOME = /home/projects/ppc64le-pwr8/superlu/4.3.0/gcc/7.2.0
F77_VENDOR = gcc
KRB5CCNAME = FILE:/tmp/krb5cc_91724_wQFUVKfdGI
BINUTILS_VERSION = 2.30.0
GIT_BRANCH = origin/develop
CMAKE_ROOT = /home/projects/ppc64le/cmake/3.9.6
BOOST_ROOT = /home/projects/ppc64le-pwr8/boost/1.65.1/gcc/7.2.0
VALGRIND_ROOT = /home/projects/ppc64le/valgrind/3.12.0
MPIF77 = /home/projects/ppc64le-pwr8-nvidia/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88/bin/mpif77
PARMETIS_VERSION = 4.0.3
LSB_JOBNAME = trilinos-folder/Trilinos_pullrequest_cuda_9.2
LOADEDMODULES = git/2.10.1:python/2.7.12:cuda/9.2.88:binutils/2.30.0:gcc/7.2.0:papi/5.5.1:java/ibm/sdk/8.0.0:openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:pnetcdf-exo/1.9.0/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:zlib/1.2.8:hdf5/1.8.20/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netcdf/4.6.1/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cgns/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:netlib/3.8.0/gcc/7.2.0:superlu/4.3.0/gcc/7.2.0:boost/1.65.1/gcc/7.2.0:metis/5.0.1/gcc/7.2.0:parmetis/4.0.3/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88:cmake/3.9.6:valgrind/3.12.0:devpack/20180521/openmpi/2.1.2/gcc/7.2.0/cuda/9.2.88
WORKSPACE_TMP = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2@tmp
GIT_BRANCH_1 = origin/master
CUDA_MANAGED_FORCE_DEVICE_ALLOC = 1
HISTCONTROL = ignoredups
PWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
LS_EXECCWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #5271
CXX_VERSION = 7.2.0
PYTHON_ROOT = /home/projects/ppc64le/python/2.7.12
OMPI_CXX = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/packages/kokkos/bin/nvcc_wrapper
SUPERLU_VERSION = 4.3.0
PULLREQUESTNUM = 7932
BINARY_TYPE_HPC =

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/TFW_testing_single_configure_prototype
Traceback (most recent call last):
File "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 725, in
returnValue = run()
File "/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxDriverTest.py", line 718, in run
'-Dsubprojects_file=../package_subproject_list.cmake'])
File "/home/projects/ppc64le/python/2.7.12/lib/python2.7/subprocess.py", line 541, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['ctest', '-S', 'simple_testing.cmake', '-Dbuild_name=PR-7932-test-Trilinos_pullrequest_cuda_9.2-5271', '-Dskip_by_parts_submit=OFF', '-Dskip_update_step=ON', '-Ddashboard_model=Experimental', '-Ddashboard_track=Pull Request', '-DPARALLEL_LEVEL=64', '-DTEST_PARALLEL_LEVEL=8', '-Dbuild_dir=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/pull_request_test', '-Dconfigure_script=/home/trilinos/jenkins/ride/workspace/trilinos-folder/Trilinos_pullrequest_cuda_9.2/Trilinos/cmake/std/PullRequestLinuxCuda9.2TestingSettings.cmake', '-Dpackage_enables=../packageEnables.cmake', '-Dsubprojects_file=../package_subproject_list.cmake']' returned non-zero exit status 255
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE

Console Output (last 100 lines) : Trilinos_pullrequest_clang_10.0.0 # 420 (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/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos

git diff --name-only origin/develop..HEAD > /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/changed-files.txt

Wrote file 'changed-files.txt'

Current directory: /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0

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

CHANGED_PACKAGES_FULL_LIST='ALL_PACKAGES'

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

CHANGED_PACKAGES_ST_LIST='ALL_PACKAGES'

E) Generate the packageEnables.cmake enables file

Wrote file 'packageEnables.cmake'

F) Generate the package_subproject_list.cmake file

Wrote file 'package_subproject_list.cmake'
Build name = PR-7932-test-Trilinos_pullrequest_clang_10.0.0-420
Cur dir = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/TFW_testing_single_configure_prototype
Source dir = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos
Binary dir = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/pull_request_test
Parallel level = 20
Testing Parallel level = 20
skip_by_parts_submit = OFF
skip_single_submit = ON
skip_update_step = ON
skip_upload_config_files = OFF
skip_clean_build_dir = ON
Subproject count = 60
Dashboard model = Experimental
Dashboard track = Pull Request
Running configuration:
/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.17.1/bin/cmake
-C "/scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos/cmake/std/PullRequestLinuxClang10.0.0TestingSettings.cmake"
-C "/scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/packageEnables.cmake"
-DTrilinos_ENABLE_TESTS:BOOL=ON
-DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
-G "Ninja"
/scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-9.novalocal&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_clang_10.0.0-420&field3=buildstamp&compare3=61&value3=20200829-1706-Pull Request-Experimental
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_clang_10.0.0-420&field2=buildstamp&compare2=61&value2=20200829-1706-Pull Request-Experimental
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_clang_10.0.0-420&field2=buildstamp&compare2=61&value2=20200829-1706-Pull Request-Experimental
Starting configure step.
Each . represents 1024 bytes of output
.................................................. Size: 50K
.................................................. Size: 100K
.................................................. Size: 150K
.................................................. Size: 200K
.................................................. Size: 250K
.................................................. Size: 300K
.................................................. Size: 350K
.................................................. Size: 400K
............................................ Size of output: 443K
configure submit error = 0
Configure suceeded.
Starting build step.
Each symbol represents 1024 bytes of output.
................................ Size of output: 31K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
ja_fortran/1.10.0
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0@tmp
SEMS_CMAKE_VERSION = 3.17.1
HISTCONTROL = ignoredups
SERIAL_CXX = clang++
PWD = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #420
PULLREQUESTNUM = 7932
SEMS_SUPERLU_INCLUDE_PATH = /projects/sems/install/rhel7-x86_64/sems/tpl/superlu/4.3/clang/10.0.0/base/include

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_ALL_PACKAGES = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-9/workspace/trilinos-folder/Trilinos_pullrequest_clang_10.0.0/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_python_2 # 3268 (click to expand)

HUDSON_HOME = /var/lib/jenkins
TRILINOS_TARGET_BRANCH = develop
https_proxy = http://wwwproxy.sandia.gov:80
F90 = gfortran
SERIAL_F90 = gfortran
SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3
JOB_COOWNERS = prwolfe,trilinos
SERIAL_FC = gfortran
BUILD_CAUSE_MANUALTRIGGER = true
HUDSON_COOKIE = 2110ac87-a7e5-4c14-97bd-640972ff25e3
ftp_proxy = http://wwwproxy.sandia.gov:80/
QT_GRAPHICSSYSTEM_CHECKED = 1
SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-5-trilinos
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 51750 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-5-trilinos trilinos-CAPACITY trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_5
PATH = /projects/sierra/linux_rh7/install/Python/2.7.15/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 6761d1a2013f02edd5dfbefbb3c7f2f1e7c62d9e
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 3268
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0:sems-cmake/3.10.3:atdm-env:atdm-nCurrently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-7932-test-Trilinos_pullrequest_python_2-3268
Cur dir                  = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/pull_request_test
Parallel level           = 20
Testing Parallel level   = 20
skip_by_parts_submit     = OFF
skip_single_submit       = ON
skip_update_step         = ON
skip_upload_config_files = OFF
skip_clean_build_dir     = ON
Subproject count         = 1
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/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos/cmake/std/PullRequestLinuxPython2.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-5.novalocal&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_python_2-3268&field3=buildstamp&compare3=61&value3=20200829-1706-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_python_2-3268&field2=buildstamp&compare2=61&value2=20200829-1706-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_python_2-3268&field2=buildstamp&compare2=61&value2=20200829-1706-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ...................... Size of output: 21K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
inja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #3268
PULLREQUESTNUM = 7932

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-5/workspace/trilinos-folder/Trilinos_pullrequest_python_2/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS

Console Output (last 100 lines) : Trilinos_pullrequest_python_3 # 3289 (click to expand)

HUDSON_HOME = /var/lib/jenkins
TRILINOS_TARGET_BRANCH = develop
https_proxy = http://wwwproxy.sandia.gov:80
F90 = gfortran
SERIAL_F90 = gfortran
SEMS_CMAKE_ROOT = /projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3
JOB_COOWNERS = prwolfe,trilinos
SERIAL_FC = gfortran
BUILD_CAUSE_MANUALTRIGGER = true
HUDSON_COOKIE = e0b8e9c1-9c86-4d59-9b88-bb8f2ac1281a
ftp_proxy = http://wwwproxy.sandia.gov:80/
QT_GRAPHICSSYSTEM_CHECKED = 1
SEMS_NINJA_FORTRAN_LOCAL_COMPILER_VERSION = 4.8.5
F77 = gfortran
TRILINOS_TARGET_REPO = https://github.com/trilinos/Trilinos
NODE_OWNER_EMAIL = ceeadmin@sandia.gov
SEMS_GIT_LOCAL_PYTHON_VERSION = 2.7.5
NODE_NAME = tr-test-8-trilinos
GIT_CHECKOUT_DIR = Trilinos
SEMS_NINJA_FORTRAN_VERSION = 1.7.2
SEMS_COMPILER_VERSION = 7.2.0
SSH_CLIENT = 205.137.81.17 36168 22
JENKINS_URL = https://ascic-jenkins.sandia.gov/
LOGNAME = trilinos
NODE_LABELS = tr-test-8-trilinos trilinos-CAPACITY trilinos-any trilinos-cloud-32 trilinos_cloud_32_node_8
PATH = /projects/sierra/linux_rh7/install/Python/3.6.3/bin:/projects/sierra/linux_rh7/install/Python/extrasbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/sbin:/projects/sems/install/rhel7-x86_64/atdm/utility/ninja_fortran/1.7.2/bin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/cmake/3.10.3/bin:/projects/sems/install/rhel7-x86_64/sems/compiler/gcc/7.2.0/base/bin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/sbin:/projects/sems/install/rhel7-x86_64/sems/utility/git/2.10.1/bin:/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/ascldap/users/trilinos/.local/bin:/ascldap/users/trilinos/bin
SEMS_NINJA_FORTRAN_LOCAL_PYTHON_VERSION = 2.7.5
GIT_PREVIOUS_SUCCESSFUL_COMMIT = 6761d1a2013f02edd5dfbefbb3c7f2f1e7c62d9e
no_proxy = localhost,localnets,127.0.0.1,169.254.0.0/16,forge.sandia.gov
CC = gcc
SEMS_CMAKE_LOCAL_COMPILER_VERSION = 4.8.5
JOB_OWNER_EMAIL = prwolfe@sandia.gov
PULLREQUEST_CDASH_TRACK = Pull Request
BUILD_ID = 3289
JOB_COOWNERS_EMAILS = prwolfe@sandia.gov,trilinos@sandia.gov
GIT_URL = https://github.com/trilinos/Trilinos
SEMS_GCC_LOCAL_COMPILER_VERSION = 4.8.5
LOADEDMODULES = sems-env:sems-git/2.10.1:sems-gcc/7.2.0Currently Loaded Modulefiles:
  1) sems-env                   4) sems-cmake/3.10.3
  2) sems-git/2.10.1            5) atdm-env
  3) sems-gcc/7.2.0             6) atdm-ninja_fortran/1.7.2
Build name               = PR-7932-test-Trilinos_pullrequest_python_3-3289
Cur dir                  = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Source dir               = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos
Binary dir               = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/pull_request_test
Parallel level           = 20
Testing Parallel level   = 20
skip_by_parts_submit     = OFF
skip_single_submit       = ON
skip_update_step         = ON
skip_upload_config_files = OFF
skip_clean_build_dir     = ON
Subproject count         = 1
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/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos/cmake/std/PullRequestLinuxPython3.cmake"
  -C "/scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/packageEnables.cmake"
  -DTrilinos_ENABLE_TESTS:BOOL=ON
  -DTrilinos_PARALLEL_LINK_JOBS_LIMIT:STRING=2
  -G "Ninja"
  /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/Trilinos
CTEST_DROP_LOCATION = /cdash/submit.php?project=Trilinos
CDash URL1 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=3&showfilters=1&filtercombine=and&field1=site&compare1=61&value1=tr-test-8.novalocal&field2=buildname&compare2=61&value2=PR-7932-test-Trilinos_pullrequest_python_3-3289&field3=buildstamp&compare3=61&value3=20200829-1706-Pull Request
CDash URL2 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&display=project&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_python_3-3289&field2=buildstamp&compare2=61&value2=20200829-1706-Pull Request
CDash URL3 = https://testing.sandia.gov/cdash/index.php?project=Trilinos&filtercount=2&showfilters=0&filtercombine=and&field1=buildname&compare1=61&value1=PR-7932-test-Trilinos_pullrequest_python_3-3289&field2=buildstamp&compare2=61&value2=20200829-1706-Pull Request
Starting configure step.
   Each . represents 1024 bytes of output
    ...................... Size of output: 21K
configure submit error = 0
Configure suceeded.
Starting build step.
   Each symbol represents 1024 bytes of output.
    . Size of output: 0K
Build succeeded.
build submit error = 0
Starting testing step.
Tests succeeded.
test submit error = 0
File upload submit error = 0
:sems-cmake/3.10.3:atdm-env:atdm-ninja_fortran/1.7.2
WORKSPACE_TMP = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3@tmp
SEMS_CMAKE_VERSION = 3.10.3
HISTCONTROL = ignoredups
SERIAL_CXX = g++
PWD = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3
JENKINS_SERVER_COOKIE = 248910a9cd8de38c
BUILD_DISPLAY_NAME = #3289
PULLREQUESTNUM = 7932

==========================================================================================
None
PULLREQUEST_CDASH_TRACK is set. Setting CDASH_TRACK=Pull Request
Enabled packages:
-- Setting Trilinos_ENABLE_TrilinosFrameworkTests = ON

Set CWD = /scratch/trilinos/jenkins/tr-test-8/workspace/trilinos-folder/Trilinos_pullrequest_python_3/TFW_testing_single_configure_prototype
Archiving artifacts
Finished: SUCCESS


CDash Test Results for PR# 7932.


Wiki: How to Reproduce PR Testing Builds and Errors.

@prwolfe
Copy link
Contributor

prwolfe commented Aug 31, 2020

Will - this matches my understanding of python recommended practice for 3 vs. 2.

@william76
Copy link
Contributor Author

william76 commented Aug 31, 2020

@prwolfe looks like something got into develop that's breaking a lot of tests though. The failures on this PR have nothing to do with the PR scripts.

correction: into develop... master merge hasn't passed since last week. :(

@prwolfe
Copy link
Contributor

prwolfe commented Aug 31, 2020 via email

@william76 william76 added the AT: RETEST Causes the PR autotester to run a new round of PR tests on the next iteration label Sep 1, 2020
@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: 7728
  • 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
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 7538
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5963
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 183
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1999
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 5295
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 444
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 3290
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 3311
  • Status: STARTED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Using Repos:

Repo: TRILINOS (william76/Trilinos)
  • Branch: PRDriverMergeFix-20200828
  • SHA: 39f9be1
  • Mode: TEST_REPO

Pull Request Author: william76

@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: 7728
  • 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
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_intel_17.0.1

  • Build Num: 7538
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL

  • Build Num: 5963
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_7.2.0_debug

  • Build Num: 183
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_gcc_8.3.0

  • Build Num: 1999
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_cuda_9.2

  • Build Num: 5295
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_clang_10.0.0

  • Build Num: 444
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_python_2

  • Build Num: 3290
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a

Build Information

Test Name: Trilinos_pullrequest_python_3

  • Build Num: 3311
  • Status: PASSED

Jenkins Parameters

Parameter Name Value
PR_LABELS AT: AUTOMERGE;AT: RETEST;PA: Framework
PULLREQUESTNUM 7932
TEST_REPO_ALIAS TRILINOS
TRILINOS_SOURCE_BRANCH PRDriverMergeFix-20200828
TRILINOS_SOURCE_REPO https://github.com/william76/Trilinos
TRILINOS_SOURCE_SHA 39f9be1
TRILINOS_TARGET_BRANCH develop
TRILINOS_TARGET_REPO https://github.com/trilinos/Trilinos
TRILINOS_TARGET_SHA 6761d1a


CDash Test Results for PR# 7932.

@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 Sep 1, 2020
@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester trilinos-autotester merged commit 1ce57b1 into trilinos:develop Sep 1, 2020
@trilinos-autotester
Copy link
Contributor

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

@trilinos-autotester trilinos-autotester removed the AT: AUTOMERGE Causes the PR autotester to automatically merge the PR branch once approvals are completed label Sep 1, 2020
@william76 william76 deleted the PRDriverMergeFix-20200828 branch November 11, 2020 16:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
PA: Framework Issues that fall under the Trilinos Framework Product Area
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants