[NewPM] Fixing test failure on Windows - removed opt binary name from pattern
authorFedor Sergeev <fedor.sergeev@azul.com>
Wed, 17 Oct 2018 11:01:15 +0000 (11:01 +0000)
committerFedor Sergeev <fedor.sergeev@azul.com>
Wed, 17 Oct 2018 11:01:15 +0000 (11:01 +0000)
llvm-svn: 344686

llvm/test/Other/pass-pipeline-parsing.ll

index d26d000..2e8bc7c 100644 (file)
 
 ; 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
 ; 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