diff options
author | Teresa Johnson <tejohnson@google.com> | 2019-01-18 20:41:49 +0000 |
---|---|---|
committer | Teresa Johnson <tejohnson@google.com> | 2019-01-18 20:41:49 +0000 |
commit | 723636ee8c3326eb1fb192db20991816b67fc275 (patch) | |
tree | 8cf473333eaaf434e9b343ee763972926fe70007 | |
parent | c636806297c35c6ba143a2a423d47bc0bde23776 (diff) | |
download | bcm5719-llvm-723636ee8c3326eb1fb192db20991816b67fc275.tar.gz bcm5719-llvm-723636ee8c3326eb1fb192db20991816b67fc275.zip |
Make ThinLTO test run single threaded to try to avoid flakiness
To see if this helps flaky bot failures in PR40351.
llvm-svn: 351589
-rw-r--r-- | llvm/test/ThinLTO/X86/cfi-devirt.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/ThinLTO/X86/cfi-devirt.ll b/llvm/test/ThinLTO/X86/cfi-devirt.ll index a4a0c6bdd9a..3fd0486c7e8 100644 --- a/llvm/test/ThinLTO/X86/cfi-devirt.ll +++ b/llvm/test/ThinLTO/X86/cfi-devirt.ll @@ -49,7 +49,7 @@ ; that does not have a split LTO Unit. ; RUN: opt -thinlto-bc -o %t2.o %S/Inputs/empty.ll ; RUN: not llvm-lto2 run %t.o %t2.o -save-temps -pass-remarks=. \ -; RUN: -verify-machineinstrs=0 \ +; RUN: -verify-machineinstrs=0 -thinlto-threads=1 \ ; RUN: -o %t3 \ ; RUN: -r=%t.o,test,px \ ; RUN: -r=%t.o,_ZN1A1nEi,p \ |