From 5f801366d1ad2dbec537143ff0a131039a781d15 Mon Sep 17 00:00:00 2001 From: River Riddle Date: Tue, 23 Apr 2019 17:02:06 -0700 Subject: [PATCH] Fix flaky Linalg roundtrip test. This removes an invalid "%s" from the second mlir-opt command. -- PiperOrigin-RevId: 244953230 --- mlir/test/Linalg/roundtrip.mlir | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlir/test/Linalg/roundtrip.mlir b/mlir/test/Linalg/roundtrip.mlir index a0e02d0..13e36047 100644 --- a/mlir/test/Linalg/roundtrip.mlir +++ b/mlir/test/Linalg/roundtrip.mlir @@ -1,4 +1,4 @@ -// RUN: mlir-opt %s -verify | mlir-opt %s -verify | FileCheck %s +// RUN: mlir-opt %s -verify | mlir-opt -verify | FileCheck %s func @range(%arg0: index, %arg1: index, %arg2: index) { %0 = linalg.range %arg0:%arg1:%arg2 : !linalg.range -- 2.7.4