Displaying 2 results from an estimated 2 matches for "buildbot_bootstrap".
2014 Apr 10
2
[LLVMdev] Need help reproducing a sanitizer buildbot failure
...he buildbot that failed is
http://lab.llvm.org:8011/builders/sanitizer-x86_64-linux-bootstrap/builds/2959
I looked around in the logs, looking for the config/build commands that
would reproduce the failure. The problem is that the bot seems to be using
a script which I don't have access to (buildbot_bootstrap.sh). So, I looked
for cmake/ninja calls. AFAICT, the bot does a bootstrap and then runs the
testsuite with the final build configured with -DLLVM_USE_SANITIZER=Memory.
I tried that locally, but the build dies very early in tblgen:
FAILED: cd /ssd/dnovillo/llvm/bld/tools/clang/include/clang/Driver...
2014 Apr 10
3
[LLVMdev] Need help reproducing a sanitizer buildbot failure
On Thu, Apr 10, 2014 at 4:43 PM, Reid Kleckner <rnk at google.com> wrote:
> msan isn't usable without an instrumented C++ standard library.
>
> The script in question is here:
>
> https://code.google.com/p/address-sanitizer/source/browse/trunk/build/scripts/slave/buildbot_bootstrap.sh
>
Thanks, Reid. I've gotten the script and I'm now running it locally. It's
running into trouble in llvm_build2_asan, so I'll have to kick it a bit
first.
I think the bot usually gives a readable error report, but it doesn't work
> for this test because the test is p...