diff options
author | David Blaikie <dblaikie@gmail.com> | 2019-09-11 22:15:16 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2019-09-11 22:15:16 +0000 |
commit | d79cc1482276db4cdbbcb25d43cb970836f75a6f (patch) | |
tree | aa52479566e17dfb98f275ff775f36d904e16e16 | |
parent | ff45955fc8684e5a2be22224edcc677ef6d54f5d (diff) | |
download | bcm5719-llvm-d79cc1482276db4cdbbcb25d43cb970836f75a6f.tar.gz bcm5719-llvm-d79cc1482276db4cdbbcb25d43cb970836f75a6f.zip |
PR43278: Temporarily disable llvm-reduce tests due to exhausting temp files
llvm-svn: 371679
-rw-r--r-- | llvm/test/Reduce/remove-funcs.ll | 4 | ||||
-rw-r--r-- | llvm/test/Reduce/remove-global-vars.ll | 4 | ||||
-rw-r--r-- | llvm/test/Reduce/remove-metadata.ll | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/llvm/test/Reduce/remove-funcs.ll b/llvm/test/Reduce/remove-funcs.ll index d8b493d819c..2912a49157c 100644 --- a/llvm/test/Reduce/remove-funcs.ll +++ b/llvm/test/Reduce/remove-funcs.ll @@ -10,8 +10,8 @@ ; then include the rest of the test script ; RUN: cat %p/Inputs/remove-funcs.py >> %t/test.py -; RUN: llvm-reduce --test %t/test.py %s -o %t/out.ll -; RUN: cat %t/out.ll | FileCheck -implicit-check-not=uninteresting %s +; UN: llvm-reduce --test %t/test.py %s -o %t/out.ll +; UN: cat %t/out.ll | FileCheck -implicit-check-not=uninteresting %s ; REQUIRES: plugins define i32 @uninteresting1() { diff --git a/llvm/test/Reduce/remove-global-vars.ll b/llvm/test/Reduce/remove-global-vars.ll index d9fb997d837..07308baa61a 100644 --- a/llvm/test/Reduce/remove-global-vars.ll +++ b/llvm/test/Reduce/remove-global-vars.ll @@ -10,8 +10,8 @@ ; then include the rest of the test script ; RUN: cat %p/Inputs/remove-global-vars.py >> %t/test.py -; RUN: llvm-reduce --test %t/test.py %s -o %t/out.ll -; RUN: cat %t/out.ll | FileCheck -implicit-check-not=uninteresting %s +; UN: llvm-reduce --test %t/test.py %s -o %t/out.ll +; UN: cat %t/out.ll | FileCheck -implicit-check-not=uninteresting %s ; REQUIRES: plugins ; CHECK: @interesting = global diff --git a/llvm/test/Reduce/remove-metadata.ll b/llvm/test/Reduce/remove-metadata.ll index aef2df0deab..0413ef6b34a 100644 --- a/llvm/test/Reduce/remove-metadata.ll +++ b/llvm/test/Reduce/remove-metadata.ll @@ -10,8 +10,8 @@ ; then include the rest of the test script ; RUN: cat %p/Inputs/remove-metadata.py >> %t/test.py -; RUN: llvm-reduce --test %t/test.py %s -o %t/out.ll -; RUN: cat %t/out.ll | FileCheck -implicit-check-not=! %s +; UN: llvm-reduce --test %t/test.py %s -o %t/out.ll +; UN: cat %t/out.ll | FileCheck -implicit-check-not=! %s ; REQUIRES: plugins @global = global i32 0, !dbg !0 |