[llvm-commits] [polly] r167255 - in /polly/trunk/test: CodeGen/do_pluto_matmult.ll CodeGen/loop_with_condition.ll CodeGen/loop_with_condition_2.ll CodeGen/loop_with_condition_ineq.ll CodeGen/loop_with_condition_nested.ll CodeGen/reduction.ll CodeGen/reduction_2.ll CodeGen/sequential_loops.ll CodeGen/single_do_loop_int_max_iterations.ll CodeGen/single_do_loop_one_iteration.ll CodeGen/single_do_loop_scev_replace.ll CodeGen/single_loop.ll CodeGen/single_loop_int_max_iterations.ll CodeGen/single_loop_param.ll lit.site.cfg.in

Tobias Grosser grosser at fim.uni-passau.de
Thu Nov 1 14:45:00 PDT 2012


Author: grosser
Date: Thu Nov  1 16:44:59 2012
New Revision: 167255

URL: http://llvm.org/viewvc/llvm-project?rev=167255&view=rev
Log:
Remove runtime tests from polly test suite

Similar to LLVM we now follow the policy of only having LLVM-IR level tests in
the Polly test suite. Testing for miscompilation of larger programs should be
done with the llvm test suite.

Modified:
    polly/trunk/test/CodeGen/do_pluto_matmult.ll
    polly/trunk/test/CodeGen/loop_with_condition.ll
    polly/trunk/test/CodeGen/loop_with_condition_2.ll
    polly/trunk/test/CodeGen/loop_with_condition_ineq.ll
    polly/trunk/test/CodeGen/loop_with_condition_nested.ll
    polly/trunk/test/CodeGen/reduction.ll
    polly/trunk/test/CodeGen/reduction_2.ll
    polly/trunk/test/CodeGen/sequential_loops.ll
    polly/trunk/test/CodeGen/single_do_loop_int_max_iterations.ll
    polly/trunk/test/CodeGen/single_do_loop_one_iteration.ll
    polly/trunk/test/CodeGen/single_do_loop_scev_replace.ll
    polly/trunk/test/CodeGen/single_loop.ll
    polly/trunk/test/CodeGen/single_loop_int_max_iterations.ll
    polly/trunk/test/CodeGen/single_loop_param.ll
    polly/trunk/test/lit.site.cfg.in

Modified: polly/trunk/test/CodeGen/do_pluto_matmult.ll
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/CodeGen/do_pluto_matmult.ll?rev=167255&r1=167254&r2=167255&view=diff
==============================================================================
--- polly/trunk/test/CodeGen/do_pluto_matmult.ll (original)
+++ polly/trunk/test/CodeGen/do_pluto_matmult.ll Thu Nov  1 16:44:59 2012
@@ -4,7 +4,6 @@
 ; RUN: opt %loadPolly %defaultOpts -polly-import-jscop -polly-import-jscop-dir=%S -polly-import-jscop-postfix=valid_reverse -polly-cloog -analyze %s | FileCheck -check-prefix=REVERSE %s > /dev/null
 ; RUN: opt %loadPolly %defaultOpts -polly-import-jscop -polly-import-jscop-dir=%S -polly-import-jscop-postfix=invalid_reverse -polly-cloog -analyze %s 2>&1  | FileCheck -check-prefix=INVALID %s > /dev/null
 ; RUN: opt %loadPolly %defaultOpts -polly-import-jscop -polly-import-jscop-dir=%S -polly-cloog -analyze  %s | FileCheck -check-prefix=IMPORT %s
-; RUN: opt %loadPolly %defaultOpts -polly-import-jscop -polly-import-jscop-dir=%S -polly-codegen %s | lli | diff %s.result -  %EatErrOnX86
 ; RUN: opt %loadPolly %defaultOpts -polly-import-jscop -polly-import-jscop-dir=%S -polly-codegen -S %s | FileCheck -check-prefix=CODEGEN %s
 
 

Modified: polly/trunk/test/CodeGen/loop_with_condition.ll
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/CodeGen/loop_with_condition.ll?rev=167255&r1=167254&r2=167255&view=diff
==============================================================================
--- polly/trunk/test/CodeGen/loop_with_condition.ll (original)
+++ polly/trunk/test/CodeGen/loop_with_condition.ll Thu Nov  1 16:44:59 2012
@@ -1,6 +1,4 @@
-; ModuleID = 'loop_with_condition.s'
 ; RUN: opt %loadPolly %defaultOpts -polly-cloog -analyze %s | FileCheck %s
-; RUN: opt %loadPolly %defaultOpts -polly-codegen %s | lli %EatErrOnX86
 
 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
 target triple = "x86_64-pc-linux-gnu"

Modified: polly/trunk/test/CodeGen/loop_with_condition_2.ll
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/CodeGen/loop_with_condition_2.ll?rev=167255&r1=167254&r2=167255&view=diff
==============================================================================
--- polly/trunk/test/CodeGen/loop_with_condition_2.ll (original)
+++ polly/trunk/test/CodeGen/loop_with_condition_2.ll Thu Nov  1 16:44:59 2012
@@ -1,7 +1,5 @@
 ; RUN: opt %loadPolly %defaultOpts -polly-cloog -analyze %s | FileCheck %s
-; RUN: opt %loadPolly %defaultOpts -polly-codegen %s | lli %EatErrOnX86
 
-; ModuleID = 'loop_with_condition_2.s'
 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
 target triple = "x86_64-unknown-linux-gnu"
 

Modified: polly/trunk/test/CodeGen/loop_with_condition_ineq.ll
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/CodeGen/loop_with_condition_ineq.ll?rev=167255&r1=167254&r2=167255&view=diff
==============================================================================
--- polly/trunk/test/CodeGen/loop_with_condition_ineq.ll (original)
+++ polly/trunk/test/CodeGen/loop_with_condition_ineq.ll Thu Nov  1 16:44:59 2012
@@ -1,6 +1,4 @@
-; ModuleID = 'loop_with_condition_ineq.s'
 ; RUN: opt %loadPolly %defaultOpts -polly-cloog -analyze %s | FileCheck %s
-; RUN: opt %loadPolly %defaultOpts -polly-codegen %s | lli %EatErrOnX86
 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
 target triple = "x86_64-pc-linux-gnu"
 

Modified: polly/trunk/test/CodeGen/loop_with_condition_nested.ll
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/CodeGen/loop_with_condition_nested.ll?rev=167255&r1=167254&r2=167255&view=diff
==============================================================================
--- polly/trunk/test/CodeGen/loop_with_condition_nested.ll (original)
+++ polly/trunk/test/CodeGen/loop_with_condition_nested.ll Thu Nov  1 16:44:59 2012
@@ -1,5 +1,4 @@
 ; RUN: opt %loadPolly %defaultOpts -polly-cloog -analyze %s | FileCheck %s
-; RUN: opt %loadPolly %defaultOpts -polly-codegen %s | lli %EatErrOnX86
 ; ModuleID = 'loop_with_condition_nested.s'
 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
 target triple = "x86_64-pc-linux-gnu"

Modified: polly/trunk/test/CodeGen/reduction.ll
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/CodeGen/reduction.ll?rev=167255&r1=167254&r2=167255&view=diff
==============================================================================
--- polly/trunk/test/CodeGen/reduction.ll (original)
+++ polly/trunk/test/CodeGen/reduction.ll Thu Nov  1 16:44:59 2012
@@ -1,7 +1,4 @@
 ; RUN: opt %loadPolly %defaultOpts -polly-codegen -S %s 2>&1 | not FileCheck %s
-; RUN: opt %loadPolly %defaultOpts -polly-codegen | lli
-; XFAIL: *
-; ModuleID = 'reduction.s'
 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
 target triple = "x86_64-pc-linux-gnu"
 

Modified: polly/trunk/test/CodeGen/reduction_2.ll
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/CodeGen/reduction_2.ll?rev=167255&r1=167254&r2=167255&view=diff
==============================================================================
--- polly/trunk/test/CodeGen/reduction_2.ll (original)
+++ polly/trunk/test/CodeGen/reduction_2.ll Thu Nov  1 16:44:59 2012
@@ -1,5 +1,4 @@
 ; RUN: opt %loadPolly %defaultOpts -polly-cloog -analyze %s | FileCheck %s
-; RUN: opt %loadPolly %defaultOpts -polly-codegen %s | lli %EatErrOnX86
 ; ModuleID = 'reduction_2.s'
 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
 target triple = "x86_64-unknown-linux-gnu"

Modified: polly/trunk/test/CodeGen/sequential_loops.ll
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/CodeGen/sequential_loops.ll?rev=167255&r1=167254&r2=167255&view=diff
==============================================================================
--- polly/trunk/test/CodeGen/sequential_loops.ll (original)
+++ polly/trunk/test/CodeGen/sequential_loops.ll Thu Nov  1 16:44:59 2012
@@ -1,5 +1,4 @@
 ; RUN: opt %loadPolly %defaultOpts -polly-cloog -analyze %s | FileCheck %s
-; RUN: opt %loadPolly %defaultOpts -polly-codegen %s | lli - %EatErrOnX86
 ; ModuleID = 'sequential_loops.s'
 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
 target triple = "x86_64-pc-linux-gnu"

Modified: polly/trunk/test/CodeGen/single_do_loop_int_max_iterations.ll
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/CodeGen/single_do_loop_int_max_iterations.ll?rev=167255&r1=167254&r2=167255&view=diff
==============================================================================
--- polly/trunk/test/CodeGen/single_do_loop_int_max_iterations.ll (original)
+++ polly/trunk/test/CodeGen/single_do_loop_int_max_iterations.ll Thu Nov  1 16:44:59 2012
@@ -1,8 +1,4 @@
 ; RUN: opt %loadPolly %defaultOpts -polly-cloog -analyze  -S %s | FileCheck %s
-; RUN: opt %loadPolly %defaultOpts -O3 %s | lli %EatErrOnX86
-; RUN: opt %loadPolly %defaultOpts -polly-codegen -O3 %s | lli %EatErrOnX86
-; RUN: opt %loadPolly %defaultOpts -polly-import-jscop -polly-import-jscop-dir=%d -polly-codegen %s | lli %EatErrOnX86
-; ModuleID = 'single_do_loop_int_max_iterations.s'
 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
 target triple = "x86_64-unknown-linux-gnu"
 

Modified: polly/trunk/test/CodeGen/single_do_loop_one_iteration.ll
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/CodeGen/single_do_loop_one_iteration.ll?rev=167255&r1=167254&r2=167255&view=diff
==============================================================================
--- polly/trunk/test/CodeGen/single_do_loop_one_iteration.ll (original)
+++ polly/trunk/test/CodeGen/single_do_loop_one_iteration.ll Thu Nov  1 16:44:59 2012
@@ -1,5 +1,4 @@
 ; RUN: opt %loadPolly %defaultOpts -polly-cloog-scop -S -analyze  %s | FileCheck %s
-; RUN: opt %loadPolly %defaultOpts -polly-codegen -O3 %s | lli
 ; XFAIL: *
 ; ModuleID = 'single_do_loop_one_iteration.s'
 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"

Modified: polly/trunk/test/CodeGen/single_do_loop_scev_replace.ll
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/CodeGen/single_do_loop_scev_replace.ll?rev=167255&r1=167254&r2=167255&view=diff
==============================================================================
--- polly/trunk/test/CodeGen/single_do_loop_scev_replace.ll (original)
+++ polly/trunk/test/CodeGen/single_do_loop_scev_replace.ll Thu Nov  1 16:44:59 2012
@@ -1,6 +1,4 @@
 ; RUN: opt %loadPolly %defaultOpts -polly-cloog -analyze %s | FileCheck %s
-; RUN: opt %loadPolly %defaultOpts %s | lli %EatErrOnX86
-; RUN: opt %loadPolly %defaultOpts -polly-codegen %s | lli %EatErrOnX86
 ; ModuleID = 'single_do_loop_scev_replace.s'
 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
 target triple = "x86_64-unknown-linux-gnu"

Modified: polly/trunk/test/CodeGen/single_loop.ll
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/CodeGen/single_loop.ll?rev=167255&r1=167254&r2=167255&view=diff
==============================================================================
--- polly/trunk/test/CodeGen/single_loop.ll (original)
+++ polly/trunk/test/CodeGen/single_loop.ll Thu Nov  1 16:44:59 2012
@@ -1,5 +1,4 @@
 ; RUN: opt %loadPolly %defaultOpts -polly-cloog -analyze %s | FileCheck %s
-; RUN: opt %loadPolly %defaultOpts -polly-codegen %s | lli - %EatErrOnX86
 ; ModuleID = 'single_loop.s'
 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
 target triple = "x86_64-unknown-linux-gnu"

Modified: polly/trunk/test/CodeGen/single_loop_int_max_iterations.ll
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/CodeGen/single_loop_int_max_iterations.ll?rev=167255&r1=167254&r2=167255&view=diff
==============================================================================
--- polly/trunk/test/CodeGen/single_loop_int_max_iterations.ll (original)
+++ polly/trunk/test/CodeGen/single_loop_int_max_iterations.ll Thu Nov  1 16:44:59 2012
@@ -1,7 +1,5 @@
 ; RUN: opt %loadPolly %defaultOpts -polly-cloog -analyze  -S %s | FileCheck %s
-; RUN: opt %loadPolly %defaultOpts -polly-codegen -O3 %s | lli
 
-; ModuleID = 'single_loop_int_max_iterations.s'
 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
 target triple = "x86_64-unknown-linux-gnu"
 

Modified: polly/trunk/test/CodeGen/single_loop_param.ll
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/CodeGen/single_loop_param.ll?rev=167255&r1=167254&r2=167255&view=diff
==============================================================================
--- polly/trunk/test/CodeGen/single_loop_param.ll (original)
+++ polly/trunk/test/CodeGen/single_loop_param.ll Thu Nov  1 16:44:59 2012
@@ -1,6 +1,4 @@
 ; RUN: opt %loadPolly %defaultOpts -polly-cloog -analyze %s | FileCheck %s
-; RUN: opt %loadPolly %defaultOpts -polly-codegen %s | lli - %EatErrOnX86
-; ModuleID = 'single_loop_param.s'
 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
 target triple = "x86_64-pc-linux-gnu"
 

Modified: polly/trunk/test/lit.site.cfg.in
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/test/lit.site.cfg.in?rev=167255&r1=167254&r2=167255&view=diff
==============================================================================
--- polly/trunk/test/lit.site.cfg.in (original)
+++ polly/trunk/test/lit.site.cfg.in Thu Nov  1 16:44:59 2012
@@ -29,7 +29,6 @@
                              + config.polly_lib_dir + '/LLVMPolly at LLVM_SHLIBEXT@'))
 config.substitutions.append(('%defaultOpts', ' -basicaa -polly-prepare -polly-region-simplify'))
 config.substitutions.append(('%polybenchOpts', ' -O3 -loop-simplify -indvars '))
-config.substitutions.append(('%EatErrOnX86', EAT_ERR_ON_X86))
 config.substitutions.append(('%vector-opt', '-polly-vectorizer=polly'))
 
 # Let the main config do the real work.





More information about the llvm-commits mailing list