[Mlir-commits] [mlir] 09dbdcf - [mlir, win] Mark several MLRI tests as unsupported on system-windows
Stella Stamenova
llvmlistbot at llvm.org
Fri Oct 9 16:29:25 PDT 2020
Author: Stella Stamenova
Date: 2020-10-09T16:27:50-07:00
New Revision: 09dbdcf15fa33be7e0f6b7e28d3118d95ab009df
URL: https://github.com/llvm/llvm-project/commit/09dbdcf15fa33be7e0f6b7e28d3118d95ab009df
DIFF: https://github.com/llvm/llvm-project/commit/09dbdcf15fa33be7e0f6b7e28d3118d95ab009df.diff
LOG: [mlir, win] Mark several MLRI tests as unsupported on system-windows
They are currently marked as unsupported when windows is part of the triple, but they actually fail when they are run on Windows, so they are unsupported on system-windows
Reviewed By: rriddle
Differential Revision: https://reviews.llvm.org/D89169
Added:
Modified:
mlir/test/mlir-reduce/dce-test.mlir
mlir/test/mlir-reduce/multiple-function.mlir
mlir/test/mlir-reduce/simple-test.mlir
Removed:
################################################################################
diff --git a/mlir/test/mlir-reduce/dce-test.mlir b/mlir/test/mlir-reduce/dce-test.mlir
index 35f245200d35..307b364bf428 100644
--- a/mlir/test/mlir-reduce/dce-test.mlir
+++ b/mlir/test/mlir-reduce/dce-test.mlir
@@ -1,4 +1,4 @@
-// UNSUPPORTED: -windows-
+// UNSUPPORTED: system-windows
// RUN: mlir-reduce %s -test %S/failure-test.sh -pass-test DCE | FileCheck %s
// This input should be reduced by the pass pipeline so that only
// the @simple1 function remains as the other functions should be
diff --git a/mlir/test/mlir-reduce/multiple-function.mlir b/mlir/test/mlir-reduce/multiple-function.mlir
index d225df8b8676..c668271571f1 100644
--- a/mlir/test/mlir-reduce/multiple-function.mlir
+++ b/mlir/test/mlir-reduce/multiple-function.mlir
@@ -1,4 +1,4 @@
-// UNSUPPORTED: -windows-
+// UNSUPPORTED: system-windows
// RUN: mlir-reduce %s -test %S/failure-test.sh -pass-test function-reducer | FileCheck %s
// This input should be reduced by the pass pipeline so that only
// the @simple5 function remains as this is the shortest function
diff --git a/mlir/test/mlir-reduce/simple-test.mlir b/mlir/test/mlir-reduce/simple-test.mlir
index 5329e9552f5b..4d274e1a39fe 100644
--- a/mlir/test/mlir-reduce/simple-test.mlir
+++ b/mlir/test/mlir-reduce/simple-test.mlir
@@ -1,4 +1,4 @@
-// UNSUPPORTED: -windows-
+// UNSUPPORTED: system-windows
// RUN: mlir-reduce %s -test %S/test.sh -pass-test function
func @simple1(%arg0: i1, %arg1: memref<2xf32>, %arg2: memref<2xf32>) {
More information about the Mlir-commits
mailing list