[PATCH] D51273: [UBSan] Propagate `UBSAN_OPTIONS` environment variable when running ios simulator tests.

Dan Liew via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Sep 3 01:38:43 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL341299: [UBSan] Propagate `UBSAN_OPTIONS` environment variable when running ios… (authored by delcypher, committed by ).

Repository:
  rL LLVM

https://reviews.llvm.org/D51273

Files:
  compiler-rt/trunk/test/sanitizer_common/ios_commands/iossim_run.py


Index: compiler-rt/trunk/test/sanitizer_common/ios_commands/iossim_run.py
===================================================================
--- compiler-rt/trunk/test/sanitizer_common/ios_commands/iossim_run.py
+++ compiler-rt/trunk/test/sanitizer_common/ios_commands/iossim_run.py
@@ -8,7 +8,7 @@
 
 device_id = os.environ["SANITIZER_IOSSIM_TEST_DEVICE_IDENTIFIER"]
 
-for e in ["ASAN_OPTIONS", "TSAN_OPTIONS"]:
+for e in ["ASAN_OPTIONS", "TSAN_OPTIONS", "UBSAN_OPTIONS"]:
   if e in os.environ:
     os.environ["SIMCTL_CHILD_" + e] = os.environ[e]
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D51273.163668.patch
Type: text/x-patch
Size: 554 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180903/6cd4bc0a/attachment.bin>


More information about the llvm-commits mailing list