[Mlir-commits] [mlir] c7515a4 - Fix MLIR python binding test after changes in ASM printer

Mehdi Amini llvmlistbot at llvm.org
Tue Aug 31 11:50:31 PDT 2021


Author: Mehdi Amini
Date: 2021-08-31T18:50:22Z
New Revision: c7515a49b1ddf1eae3c3d2e52c56e3fa02305351

URL: https://github.com/llvm/llvm-project/commit/c7515a49b1ddf1eae3c3d2e52c56e3fa02305351
DIFF: https://github.com/llvm/llvm-project/commit/c7515a49b1ddf1eae3c3d2e52c56e3fa02305351.diff

LOG: Fix MLIR python binding test after changes in ASM printer

Added: 
    

Modified: 
    mlir/test/python/ir/operation.py

Removed: 
    


################################################################################
diff  --git a/mlir/test/python/ir/operation.py b/mlir/test/python/ir/operation.py
index d4fa09131807..5f510fb6b2cb 100644
--- a/mlir/test/python/ir/operation.py
+++ b/mlir/test/python/ir/operation.py
@@ -59,7 +59,7 @@ def walk_operations(indent, op):
 
   # CHECK: REGION 0:
   # CHECK:   BLOCK 0:
-  # CHECK:     OP 0: builtin.func
+  # CHECK:     OP 0: func
   # CHECK:       REGION 0:
   # CHECK:         BLOCK 0:
   # CHECK:           OP 0: %0 = "custom.addi"
@@ -96,7 +96,7 @@ def walk_operations(indent, op):
 
   # CHECK: REGION 0:
   # CHECK:   BLOCK 0:
-  # CHECK:     OP 0: builtin.func
+  # CHECK:     OP 0: func
   # CHECK:     OP 0: parent builtin.module
   # CHECK:       REGION 0:
   # CHECK:         BLOCK 0:


        


More information about the Mlir-commits mailing list