-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Allow reading v5 TF1 that were stored memberwise in a TClonesArray. #3964
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
Conversation
|
Starting build on |
|
@phsft-bot build with flags -DCTEST_TEST_EXCLUDE_NONE=On |
|
Starting build on |
|
Build failed on windows10/default. |
|
Build failed on ROOT-performance-centos7-multicore/default. Warnings:
Failing tests: |
|
Build failed on mac1014/cxx17. Warnings:
Failing tests: |
|
Starting build on |
|
Build failed on windows10/default. |
|
Starting build on |
1 similar comment
|
Starting build on |
|
Build failed on mac1014/cxx17. Errors:
Warnings:
|
|
Build failed on windows10/default. |
|
Starting build on |
|
Build failed on windows10/default. Warnings:
|
|
Build failed on ROOT-fedora27/noimt. Warnings:
Failing tests: |
|
Build failed on ROOT-fedora29/python3. Warnings:
Failing tests: |
|
Build failed on ROOT-ubuntu16/rtcxxmod. Warnings:
Failing tests: |
|
the failure are real and due to a compiler bug which introduce (infinite) loop where there isn't ... Trying to narrow down and/or avoid the pattern provoking this ... |
|
Starting build on |
|
Starting build on |
|
Build failed on mac1014/cxx17. Warnings:
Failing tests: |
|
Build failed on windows10/default. Warnings:
|
|
@phsft-bot build with flags -DCTEST_TEST_EXCLUDE_NONE=On |
|
Starting build on |
|
Build failed on mac1014/cxx17. Errors:
Warnings:
Failing tests: |
|
Build failed on windows10/default. Warnings:
|
|
Starting build on |
|
Build failed on windows10/default. Warnings:
|
|
Build failed on mac1014/cxx17. Warnings:
Failing tests: |
|
Starting build on |
|
Build failed on windows10/default. Warnings:
|
|
Build failed on mac1014/cxx17. Warnings:
Failing tests: |
For unknown reasons having a call to TF1::Update (which is inside the inline function TF1::SetParameters) leads gcc to add a non-existant jump back in the middle of the routine resulting in a defacto infinite loop. [i.e commenting out the call to Update remove the 'bad code injection'] The solution is to unroll/explicitly inline TF1::SetParameters and remove the call to Update (and also spread it to avoid duplicate conditional statement).
The ownership of the TGraphDelaunay (fDelaunay) is delegated to the histogram (fHistogram), whenever the later is deleted the former is also deleted but was leaving fDelaunay pointing to deleted memeory.
|
Starting build on |
|
@couet @Axel-Naumann the failure on mac1014/cxx17 in tutorial/v7/line.cxx is unclear and has happened in a couple of other PR but is not easily reproducible (even on the machine with the failure). |
Fixes ROOT-10161