[llvm] r309485 - [tests] Do not emity binary bitcode to stdout in RegionInfo tests

Tobias Grosser via llvm-commits llvm-commits at lists.llvm.org
Sat Jul 29 02:58:43 PDT 2017


Author: grosser
Date: Sat Jul 29 02:58:43 2017
New Revision: 309485

URL: http://llvm.org/viewvc/llvm-project?rev=309485&view=rev
Log:
[tests] Do not emity binary bitcode to stdout in RegionInfo tests

Modified:
    llvm/trunk/test/Analysis/RegionInfo/cond_loop.ll
    llvm/trunk/test/Analysis/RegionInfo/condition_complicated.ll
    llvm/trunk/test/Analysis/RegionInfo/condition_complicated_2.ll
    llvm/trunk/test/Analysis/RegionInfo/condition_forward_edge.ll
    llvm/trunk/test/Analysis/RegionInfo/condition_same_exit.ll
    llvm/trunk/test/Analysis/RegionInfo/condition_simple.ll
    llvm/trunk/test/Analysis/RegionInfo/exit_in_condition.ll
    llvm/trunk/test/Analysis/RegionInfo/infinite_loop.ll
    llvm/trunk/test/Analysis/RegionInfo/infinite_loop_2.ll
    llvm/trunk/test/Analysis/RegionInfo/infinite_loop_3.ll
    llvm/trunk/test/Analysis/RegionInfo/infinite_loop_4.ll
    llvm/trunk/test/Analysis/RegionInfo/loop_with_condition.ll
    llvm/trunk/test/Analysis/RegionInfo/loops_1.ll
    llvm/trunk/test/Analysis/RegionInfo/loops_2.ll
    llvm/trunk/test/Analysis/RegionInfo/mix_1.ll
    llvm/trunk/test/Analysis/RegionInfo/nested_loops.ll
    llvm/trunk/test/Analysis/RegionInfo/next.ll
    llvm/trunk/test/Analysis/RegionInfo/paper.ll
    llvm/trunk/test/Analysis/RegionInfo/two_loops_same_header.ll

Modified: llvm/trunk/test/Analysis/RegionInfo/cond_loop.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/RegionInfo/cond_loop.ll?rev=309485&r1=309484&r2=309485&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/RegionInfo/cond_loop.ll (original)
+++ llvm/trunk/test/Analysis/RegionInfo/cond_loop.ll Sat Jul 29 02:58:43 2017
@@ -1,6 +1,6 @@
 ; REQUIRES: asserts
 ; RUN: opt -regions -analyze < %s | FileCheck %s
-; RUN: opt -regions -stats < %s 2>&1 | FileCheck -check-prefix=STAT %s
+; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
 ; RUN: opt -regions -print-region-style=bb  -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s
 ; RUN: opt -regions -print-region-style=rn  -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s
 

Modified: llvm/trunk/test/Analysis/RegionInfo/condition_complicated.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/RegionInfo/condition_complicated.ll?rev=309485&r1=309484&r2=309485&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/RegionInfo/condition_complicated.ll (original)
+++ llvm/trunk/test/Analysis/RegionInfo/condition_complicated.ll Sat Jul 29 02:58:43 2017
@@ -1,6 +1,6 @@
 ; REQUIRES: asserts
 ; RUN: opt -regions -analyze < %s | FileCheck %s
-; RUN: opt -regions -stats < %s 2>&1 | FileCheck -check-prefix=STAT %s
+; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
 ; RUN: opt -regions -print-region-style=bb  -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s
 ; RUN: opt -regions -print-region-style=rn  -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s
 

Modified: llvm/trunk/test/Analysis/RegionInfo/condition_complicated_2.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/RegionInfo/condition_complicated_2.ll?rev=309485&r1=309484&r2=309485&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/RegionInfo/condition_complicated_2.ll (original)
+++ llvm/trunk/test/Analysis/RegionInfo/condition_complicated_2.ll Sat Jul 29 02:58:43 2017
@@ -1,6 +1,6 @@
 ; REQUIRES: asserts
 ; RUN: opt -regions -analyze < %s | FileCheck %s
-; RUN: opt -regions -stats < %s 2>&1 | FileCheck -check-prefix=STAT %s
+; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
 ; RUN: opt -regions -print-region-style=bb  -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s
 ; RUN: opt -regions -print-region-style=rn  -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s
 

Modified: llvm/trunk/test/Analysis/RegionInfo/condition_forward_edge.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/RegionInfo/condition_forward_edge.ll?rev=309485&r1=309484&r2=309485&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/RegionInfo/condition_forward_edge.ll (original)
+++ llvm/trunk/test/Analysis/RegionInfo/condition_forward_edge.ll Sat Jul 29 02:58:43 2017
@@ -1,6 +1,6 @@
 ; REQUIRES: asserts
 ; RUN: opt -regions -analyze < %s | FileCheck %s
-; RUN: opt -regions -stats < %s 2>&1 | FileCheck -check-prefix=STAT %s
+; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
 ; RUN: opt -regions -print-region-style=bb  -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s
 ; RUN: opt -regions -print-region-style=rn  -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s
 

Modified: llvm/trunk/test/Analysis/RegionInfo/condition_same_exit.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/RegionInfo/condition_same_exit.ll?rev=309485&r1=309484&r2=309485&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/RegionInfo/condition_same_exit.ll (original)
+++ llvm/trunk/test/Analysis/RegionInfo/condition_same_exit.ll Sat Jul 29 02:58:43 2017
@@ -1,6 +1,6 @@
 ; REQUIRES: asserts
 ; RUN: opt -regions -analyze < %s | FileCheck %s
-; RUN: opt -regions -stats < %s 2>&1 | FileCheck -check-prefix=STAT %s
+; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
 ; RUN: opt -regions -print-region-style=bb  -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s
 ; RUN: opt -regions -print-region-style=rn  -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s
 

Modified: llvm/trunk/test/Analysis/RegionInfo/condition_simple.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/RegionInfo/condition_simple.ll?rev=309485&r1=309484&r2=309485&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/RegionInfo/condition_simple.ll (original)
+++ llvm/trunk/test/Analysis/RegionInfo/condition_simple.ll Sat Jul 29 02:58:43 2017
@@ -1,6 +1,6 @@
 ; REQUIRES: asserts
 ; RUN: opt -regions -analyze < %s | FileCheck %s
-; RUN: opt -regions -stats < %s 2>&1 | FileCheck -check-prefix=STAT %s
+; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
 ; RUN: opt -regions -print-region-style=bb  -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s
 ; RUN: opt -regions -print-region-style=rn  -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s
 

Modified: llvm/trunk/test/Analysis/RegionInfo/exit_in_condition.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/RegionInfo/exit_in_condition.ll?rev=309485&r1=309484&r2=309485&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/RegionInfo/exit_in_condition.ll (original)
+++ llvm/trunk/test/Analysis/RegionInfo/exit_in_condition.ll Sat Jul 29 02:58:43 2017
@@ -1,6 +1,6 @@
 ; REQUIRES: asserts
 ; RUN: opt -regions -analyze < %s | FileCheck %s
-; RUN: opt -regions -stats < %s 2>&1 | FileCheck -check-prefix=STAT %s
+; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
 ; RUN: opt -regions -print-region-style=bb  -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s
 ; RUN: opt -regions -print-region-style=rn  -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s
 

Modified: llvm/trunk/test/Analysis/RegionInfo/infinite_loop.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/RegionInfo/infinite_loop.ll?rev=309485&r1=309484&r2=309485&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/RegionInfo/infinite_loop.ll (original)
+++ llvm/trunk/test/Analysis/RegionInfo/infinite_loop.ll Sat Jul 29 02:58:43 2017
@@ -1,6 +1,6 @@
 ; REQUIRES: asserts
 ; RUN: opt -regions -analyze < %s 
-; RUN: opt -regions -stats < %s 2>&1 | FileCheck -check-prefix=STAT %s
+; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
 
 define void @normal_condition() nounwind {
 0:

Modified: llvm/trunk/test/Analysis/RegionInfo/infinite_loop_2.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/RegionInfo/infinite_loop_2.ll?rev=309485&r1=309484&r2=309485&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/RegionInfo/infinite_loop_2.ll (original)
+++ llvm/trunk/test/Analysis/RegionInfo/infinite_loop_2.ll Sat Jul 29 02:58:43 2017
@@ -1,6 +1,6 @@
 ; REQUIRES: asserts
 ; RUN: opt -regions -analyze < %s 
-; RUN: opt -regions -stats < %s 2>&1 | FileCheck -check-prefix=STAT %s
+; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
 ; RUN: opt -regions -print-region-style=bb  -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s
 ; RUN: opt -regions -print-region-style=rn  -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s
 

Modified: llvm/trunk/test/Analysis/RegionInfo/infinite_loop_3.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/RegionInfo/infinite_loop_3.ll?rev=309485&r1=309484&r2=309485&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/RegionInfo/infinite_loop_3.ll (original)
+++ llvm/trunk/test/Analysis/RegionInfo/infinite_loop_3.ll Sat Jul 29 02:58:43 2017
@@ -1,6 +1,6 @@
 ; REQUIRES: asserts
 ; RUN: opt -regions -analyze < %s 
-; RUN: opt -regions -stats < %s 2>&1 | FileCheck -check-prefix=STAT %s
+; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
 
 ; RUN: opt -regions -print-region-style=bb  -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s
 ; RUN: opt -regions -print-region-style=rn  -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s

Modified: llvm/trunk/test/Analysis/RegionInfo/infinite_loop_4.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/RegionInfo/infinite_loop_4.ll?rev=309485&r1=309484&r2=309485&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/RegionInfo/infinite_loop_4.ll (original)
+++ llvm/trunk/test/Analysis/RegionInfo/infinite_loop_4.ll Sat Jul 29 02:58:43 2017
@@ -1,6 +1,6 @@
 ; REQUIRES: asserts
 ; RUN: opt -regions -analyze < %s 
-; RUN: opt -regions -stats < %s 2>&1 | FileCheck -check-prefix=STAT %s
+; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
 ; RUN: opt -regions -print-region-style=bb  -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s
 ; RUN: opt -regions -print-region-style=rn  -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s
 

Modified: llvm/trunk/test/Analysis/RegionInfo/loop_with_condition.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/RegionInfo/loop_with_condition.ll?rev=309485&r1=309484&r2=309485&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/RegionInfo/loop_with_condition.ll (original)
+++ llvm/trunk/test/Analysis/RegionInfo/loop_with_condition.ll Sat Jul 29 02:58:43 2017
@@ -1,6 +1,6 @@
 ; REQUIRES: asserts
 ; RUN: opt -regions -analyze < %s | FileCheck %s
-; RUN: opt -regions -stats < %s 2>&1 | FileCheck -check-prefix=STAT %s
+; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
 
 ; RUN: opt -regions -print-region-style=bb  -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s
 ; RUN: opt -regions -print-region-style=rn  -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s

Modified: llvm/trunk/test/Analysis/RegionInfo/loops_1.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/RegionInfo/loops_1.ll?rev=309485&r1=309484&r2=309485&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/RegionInfo/loops_1.ll (original)
+++ llvm/trunk/test/Analysis/RegionInfo/loops_1.ll Sat Jul 29 02:58:43 2017
@@ -1,6 +1,6 @@
 ; REQUIRES: asserts
 ; RUN: opt -regions -analyze < %s | FileCheck %s
-; RUN: opt -regions -stats < %s 2>&1 | FileCheck -check-prefix=STAT %s
+; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
 ; RUN: opt -regions -print-region-style=bb  -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s
 ; RUN: opt -regions -print-region-style=rn  -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s
 

Modified: llvm/trunk/test/Analysis/RegionInfo/loops_2.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/RegionInfo/loops_2.ll?rev=309485&r1=309484&r2=309485&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/RegionInfo/loops_2.ll (original)
+++ llvm/trunk/test/Analysis/RegionInfo/loops_2.ll Sat Jul 29 02:58:43 2017
@@ -1,6 +1,6 @@
 ; REQUIRES: asserts
 ; RUN: opt -regions -analyze < %s | FileCheck %s
-; RUN: opt -regions -stats < %s 2>&1 | FileCheck -check-prefix=STAT %s
+; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
 ; RUN: opt -regions -print-region-style=bb  -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s
 ; RUN: opt -regions -print-region-style=rn  -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s
 

Modified: llvm/trunk/test/Analysis/RegionInfo/mix_1.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/RegionInfo/mix_1.ll?rev=309485&r1=309484&r2=309485&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/RegionInfo/mix_1.ll (original)
+++ llvm/trunk/test/Analysis/RegionInfo/mix_1.ll Sat Jul 29 02:58:43 2017
@@ -1,6 +1,6 @@
 ; REQUIRES: asserts
 ; RUN: opt -regions -analyze < %s | FileCheck %s
-; RUN: opt -regions -stats < %s 2>&1 | FileCheck -check-prefix=STAT %s
+; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
 
 ; RUN: opt -regions -print-region-style=bb  -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s
 ; RUN: opt -regions -print-region-style=rn  -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s

Modified: llvm/trunk/test/Analysis/RegionInfo/nested_loops.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/RegionInfo/nested_loops.ll?rev=309485&r1=309484&r2=309485&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/RegionInfo/nested_loops.ll (original)
+++ llvm/trunk/test/Analysis/RegionInfo/nested_loops.ll Sat Jul 29 02:58:43 2017
@@ -1,6 +1,6 @@
 ; REQUIRES: asserts
 ; RUN: opt -regions -analyze < %s | FileCheck %s
-; RUN: opt -regions -stats < %s 2>&1 | FileCheck -check-prefix=STAT %s
+; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
 
 ; RUN: opt -regions -print-region-style=bb  -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s
 ; RUN: opt -regions -print-region-style=rn  -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s

Modified: llvm/trunk/test/Analysis/RegionInfo/next.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/RegionInfo/next.ll?rev=309485&r1=309484&r2=309485&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/RegionInfo/next.ll (original)
+++ llvm/trunk/test/Analysis/RegionInfo/next.ll Sat Jul 29 02:58:43 2017
@@ -1,6 +1,6 @@
 ; REQUIRES: asserts
 ; RUN: opt -regions -analyze < %s | FileCheck %s
-; RUN: opt -regions -stats < %s 2>&1 | FileCheck -check-prefix=STAT %s
+; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
 ; RUN: opt -regions -print-region-style=bb  -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s
 ; RUN: opt -regions -print-region-style=rn  -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s
 

Modified: llvm/trunk/test/Analysis/RegionInfo/paper.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/RegionInfo/paper.ll?rev=309485&r1=309484&r2=309485&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/RegionInfo/paper.ll (original)
+++ llvm/trunk/test/Analysis/RegionInfo/paper.ll Sat Jul 29 02:58:43 2017
@@ -1,6 +1,6 @@
 ; REQUIRES: asserts
 ; RUN: opt -regions -analyze < %s | FileCheck %s
-; RUN: opt -regions -stats < %s 2>&1 | FileCheck -check-prefix=STAT %s
+; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
 ; RUN: opt -regions -print-region-style=bb  -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s
 ; RUN: opt -regions -print-region-style=rn  -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s
 

Modified: llvm/trunk/test/Analysis/RegionInfo/two_loops_same_header.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/RegionInfo/two_loops_same_header.ll?rev=309485&r1=309484&r2=309485&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/RegionInfo/two_loops_same_header.ll (original)
+++ llvm/trunk/test/Analysis/RegionInfo/two_loops_same_header.ll Sat Jul 29 02:58:43 2017
@@ -1,6 +1,6 @@
 ; REQUIRES: asserts
 ; RUN: opt -regions -analyze < %s | FileCheck %s
-; RUN: opt -regions -stats < %s 2>&1 | FileCheck -check-prefix=STAT %s
+; RUN: opt -regions -stats -disable-output < %s 2>&1 | FileCheck -check-prefix=STAT %s
 ; RUN: opt -regions -print-region-style=bb  -analyze < %s 2>&1 | FileCheck -check-prefix=BBIT %s
 ; RUN: opt -regions -print-region-style=rn  -analyze < %s 2>&1 | FileCheck -check-prefix=RNIT %s
 




More information about the llvm-commits mailing list