From 09dbdcf15fa33be7e0f6b7e28d3118d95ab009df Mon Sep 17 00:00:00 2001 From: Stella Stamenova Date: Fri, 9 Oct 2020 16:27:50 -0700 Subject: [PATCH] [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 --- mlir/test/mlir-reduce/dce-test.mlir | 2 +- mlir/test/mlir-reduce/multiple-function.mlir | 2 +- mlir/test/mlir-reduce/simple-test.mlir | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mlir/test/mlir-reduce/dce-test.mlir b/mlir/test/mlir-reduce/dce-test.mlir index 35f2452..307b364 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 d225df8..c668271 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 5329e95..4d274e1 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>) { -- 2.7.4