-
Notifications
You must be signed in to change notification settings - Fork 573
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
Trilinos Master Merge PR Generator: Auto PR created to promote from master_merge_20200901_000611 branch to master #7951
Conversation
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.
Split StepperFactory.hpp into StepperFactory_decl.hpp and StepperFactory_impl.hpp fro ETI. * Made createMultiSteppers() name uniform with, e.g., changed to createStepper().
Resolves failures on ride/white systems
Automatically Merged using Trilinos Pull Request AutoTester PR Title: Panzer: restart append can now overwrite previous exodus steps PR Author: rppawlo
…ry_hpp Tempus: Split StepperFactory.hpp.
Panzer: Kokkos::initialize after Teuchos::GlobalMPISession
Automatically Merged using Trilinos Pull Request AutoTester PR Title: Testing: Fix valgrind path on geminga PR Author: cgcgcg
…00828 Automatically Merged using Trilinos Pull Request AutoTester PR Title: Framework: PullRequestLinuxDriverMerge.py py2-3 compatibility fix PR Author: william76
Status Flag 'Pre-Test Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request. |
Status Flag 'Master Merge AutoTester' - Testing Jenkins Projects: Pull Request Auto Testing STARTING (click to expand)Build InformationTest Name: Trilinos_pullrequest_gcc_4.8.4
Jenkins Parameters
Build InformationTest Name: Trilinos_pullrequest_intel_17.0.1
Jenkins Parameters
Build InformationTest Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL
Jenkins Parameters
Build InformationTest Name: Trilinos_pullrequest_gcc_7.2.0
Jenkins Parameters
Build InformationTest Name: Trilinos_pullrequest_gcc_8.3.0
Jenkins Parameters
Build InformationTest Name: Trilinos_pullrequest_clang_7.0.1
Jenkins Parameters
Build InformationTest Name: Trilinos_pullrequest_clang_9.0.0
Jenkins Parameters
Build InformationTest Name: Trilinos_pullrequest_clang_10.0.0
Jenkins Parameters
Build InformationTest Name: Trilinos_pullrequest_cuda_9.2
Jenkins Parameters
Build InformationTest Name: Trilinos_pullrequest_gcc_7.2.0_debug
Jenkins Parameters
Using Repos:
Pull Request Author: trilinos-autotester |
Status Flag 'Master Merge AutoTester' - Jenkins Testing: all Jobs PASSED Pull Request Auto Testing has PASSED (click to expand)Build InformationTest Name: Trilinos_pullrequest_gcc_4.8.4
Jenkins Parameters
Build InformationTest Name: Trilinos_pullrequest_intel_17.0.1
Jenkins Parameters
Build InformationTest Name: Trilinos_pullrequest_gcc_4.9.3_SERIAL
Jenkins Parameters
Build InformationTest Name: Trilinos_pullrequest_gcc_7.2.0
Jenkins Parameters
Build InformationTest Name: Trilinos_pullrequest_gcc_8.3.0
Jenkins Parameters
Build InformationTest Name: Trilinos_pullrequest_clang_7.0.1
Jenkins Parameters
Build InformationTest Name: Trilinos_pullrequest_clang_9.0.0
Jenkins Parameters
Build InformationTest Name: Trilinos_pullrequest_clang_10.0.0
Jenkins Parameters
Build InformationTest Name: Trilinos_pullrequest_cuda_9.2
Jenkins Parameters
Build InformationTest Name: Trilinos_pullrequest_gcc_7.2.0_debug
Jenkins Parameters
|
Status Flag 'Pre-Merge Inspection' - Auto Inspected - Inspection Is Not Necessary for this Pull Request. |
Status Flag 'Master Merge AutoTester' - Pull Request will be Automerged |
Merge on Pull Request# 7951: IS A SUCCESS - Pull Request successfully merged |
Auto PR created to promote from master_merge_20200901_000611 branch to master