<div dir="ltr">Hi Renato, Dean, Serge,<div><br></div><div>Just looked into the code and wanted to share some thoughts.</div><div><br></div><div><div>This might be a compare_exchange_weak spurious failure. ARM is a weakly ordered CPU, but I am not sure whether spurious failures are really possible in a single threaded app. On the other hand, there is no other way for FDRLogging_init to fail in such a way (return XRAY_LOG_UNINITIALIZED instead of XRAY_LOG_INITIALIZED) without any extra output. This is also true for the 2nd test failure in FDRLogging_finalize, which uses a weak exchange too.</div><div><br></div><div>Probably, the weak exchange needs to be either replaced with a strong one or looped with more detailed CurrentStatus checks.</div><div><br></div><div>Oleg</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jan 25, 2017 at 2:02 PM, Renato Golin via llvm-dev <span dir="ltr"><<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Dean/Serge,<br>
<br>
I just spotted this on our bots:<br>
<br>
First failure, unrelated commit:<br>
<a href="http://lab.llvm.org:8011/builders/clang-cmake-armv7-a15-full/builds/3190" rel="noreferrer" target="_blank">http://lab.llvm.org:8011/build<wbr>ers/clang-cmake-armv7-a15-<wbr>full/builds/3190</a><br>
<br>
'XRay-Unit :: unit/XRayFDRLoggingTest/FDRLog<wbr>gingTest.Simple' FAILED<br>
llvm/projects/compiler-rt/lib/<wbr>xray/tests/unit/fdr_logging_te<wbr>st.cc:55: Failure<br>
      Expected: FDRLogging_init(kBufferSize, kBufferMax, &Options,<br>
sizeof(FDRLoggingOptions))<br>
      Which is: 0<br>
To be equal to: XRayLogInitStatus::XRAY_LOG_IN<wbr>ITIALIZED<br>
      Which is: 2<br>
[  FAILED  ] FDRLoggingTest.Simple (0 ms)<br>
...<br>
 1 FAILED TEST<br>
==11476==XRay instrumentation map missing. Not initializing XRay.<br>
<br>
Then a similar, but not identical error:<br>
<a href="http://lab.llvm.org:8011/builders/clang-cmake-armv7-a15-full/builds/3191" rel="noreferrer" target="_blank">http://lab.llvm.org:8011/build<wbr>ers/clang-cmake-armv7-a15-<wbr>full/builds/3191</a><br>
<br>
'XRay-Unit :: unit/XRayFDRLoggingTest/FDRLog<wbr>gingTest.Simple' FAILED<br>
llvm/projects/compiler-rt/lib/<wbr>xray/tests/unit/fdr_logging_te<wbr>st.cc:58: Failure<br>
      Expected: FDRLogging_finalize()<br>
      Which is: 2<br>
To be equal to: XRayLogInitStatus::XRAY_LOG_FI<wbr>NALIZED<br>
      Which is: 4<br>
[  FAILED  ] FDRLoggingTest.Simple (0 ms)<br>
...<br>
 1 FAILED TEST<br>
==11476==XRay instrumentation map missing. Not initializing XRay.<br>
<br>
Note 0->2 on the first, 2->4 on the second.<br>
<br>
And then, for no reason, it's green again:<br>
<a href="http://lab.llvm.org:8011/builders/clang-cmake-armv7-a15-full/builds/3192" rel="noreferrer" target="_blank">http://lab.llvm.org:8011/build<wbr>ers/clang-cmake-armv7-a15-<wbr>full/builds/3192</a><br>
<br>
Looks like an unstable test to me. :)<br>
<br>
Can you guys have a look?<br>
<br>
Thanks!<br>
--renato<br>
______________________________<wbr>_________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/llvm-dev</a><br>
</blockquote></div><br></div></div>