On Thu, Aug 28, 2014 at 5:50 PM, Alexey Samsonov <[email protected]> wrote:

> Author: samsonov
> Date: Thu Aug 28 19:50:36 2014
> New Revision: 216701
>
> URL: http://llvm.org/viewvc/llvm-project?rev=216701&view=rev
> Log:
> Introduce -DLLVM_USE_SANITIZER=Undefined CMake option to build UBSan-ified
> version of LLVM/Clang.
>
> I've fixed most of the simple bugs and currently "check-llvm" test suite
> has 26 failures, and "check-clang" suite has 5 failures.
>

Is there a bug for the remaining failures? Is there a bot that builds in
this config?


>
> Modified:
>     cfe/trunk/test/lit.cfg
>
> Modified: cfe/trunk/test/lit.cfg
> URL:
> http://llvm.org/viewvc/llvm-project/cfe/trunk/test/lit.cfg?rev=216701&r1=216700&r2=216701&view=diff
>
> ==============================================================================
> --- cfe/trunk/test/lit.cfg (original)
> +++ cfe/trunk/test/lit.cfg Thu Aug 28 19:50:36 2014
> @@ -116,7 +116,7 @@ for symbolizer in ['ASAN_SYMBOLIZER_PATH
>          config.environment[symbolizer] = os.environ[symbolizer]
>
>  # Propagate options for sanitizers.
> -for options in ['ASAN_OPTIONS']:
> +for options in ['ASAN_OPTIONS', 'UBSAN_OPTIONS']:
>      if options in os.environ:
>          config.environment[options] = os.environ[options]
>
>
>
> _______________________________________________
> cfe-commits mailing list
> [email protected]
> http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
>
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to