diff options
| author | Fedor Sergeev <fedor.sergeev@azul.com> | 2018-10-17 11:01:15 +0000 |
|---|---|---|
| committer | Fedor Sergeev <fedor.sergeev@azul.com> | 2018-10-17 11:01:15 +0000 |
| commit | 43c37fa42b1fd404f4da207fb415461373a8ff58 (patch) | |
| tree | b70b17c9050810b96cd9b37f49a0ccf4d0e65b80 /llvm | |
| parent | bd6b2138b94a47a9226ec1e69bf3be55a47fd1ef (diff) | |
| download | bcm5719-llvm-43c37fa42b1fd404f4da207fb415461373a8ff58.tar.gz bcm5719-llvm-43c37fa42b1fd404f4da207fb415461373a8ff58.zip | |
[NewPM] Fixing test failure on Windows - removed opt binary name from pattern
llvm-svn: 344686
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/test/Other/pass-pipeline-parsing.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/Other/pass-pipeline-parsing.ll b/llvm/test/Other/pass-pipeline-parsing.ll index d26d000ec8d..2e8bc7c8730 100644 --- a/llvm/test/Other/pass-pipeline-parsing.ll +++ b/llvm/test/Other/pass-pipeline-parsing.ll @@ -210,15 +210,15 @@ ; RUN: not opt -passes='no-op-module,bad' \ ; RUN: /dev/null -disable-output 2>&1 | FileCheck %s -check-prefix=CHECK-UNKNOWN-MODULE -; CHECK-UNKNOWN-MODULE: opt: unknown module pass 'bad' +; CHECK-UNKNOWN-MODULE: unknown module pass 'bad' ; RUN: not opt -passes='no-op-loop,bad' \ ; RUN: /dev/null -disable-output 2>&1 | FileCheck %s -check-prefix=CHECK-UNKNOWN-LOOP -; CHECK-UNKNOWN-LOOP: opt: unknown loop pass 'bad' +; CHECK-UNKNOWN-LOOP: unknown loop pass 'bad' ; RUN: not opt -passes='no-op-cgscc,bad' \ ; RUN: /dev/null -disable-output 2>&1 | FileCheck %s -check-prefix=CHECK-UNKNOWN-CGSCC -; CHECK-UNKNOWN-CGSCC: opt: unknown cgscc pass 'bad' +; CHECK-UNKNOWN-CGSCC: unknown cgscc pass 'bad' ; RUN: not opt -passes='no-op-function,bad' \ ; RUN: /dev/null -disable-output 2>&1 | FileCheck %s -check-prefix=CHECK-UNKNOWN-FUNCTION @@ -230,7 +230,7 @@ ; RUN: /dev/null -disable-output 2>&1 | FileCheck %s -check-prefix=CHECK-UNKNOWN-FUNCTION ; RUN: not opt -passes='module(cgscc(function(bad,pipeline,text)))' \ ; RUN: /dev/null -disable-output 2>&1 | FileCheck %s -check-prefix=CHECK-UNKNOWN-FUNCTION -; CHECK-UNKNOWN-FUNCTION: opt: unknown function pass 'bad' +; CHECK-UNKNOWN-FUNCTION: unknown function pass 'bad' ; RUN: not opt -aa-pipeline=bad -passes=no-op-function \ ; RUN: /dev/null -disable-output 2>&1 | FileCheck %s -check-prefix=AA-PIPELINE-ERR |

