[Mlir-commits] [mlir] 41cb3c4 - Fix-forward broken test case from 2a5d497494c24425e99655b85e2277dd3f15a400.

Ingo Müller llvmlistbot at llvm.org
Tue Aug 29 08:06:29 PDT 2023


Author: Ingo Müller
Date: 2023-08-29T15:06:23Z
New Revision: 41cb3c4d87283bcdb21c8bde4c13206cb388c530

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

LOG: Fix-forward broken test case from 2a5d497494c24425e99655b85e2277dd3f15a400.

The printing of `StringAttr` was changed in
https://reviews.llvm.org/D158974, such that some test cases relying on
that output had to be changed as well.

Added: 
    

Modified: 
    mlir/test/python/dialects/builtin.py

Removed: 
    


################################################################################
diff  --git a/mlir/test/python/dialects/builtin.py b/mlir/test/python/dialects/builtin.py
index 18ebba61e7fea8..cb7d4c5629f7e7 100644
--- a/mlir/test/python/dialects/builtin.py
+++ b/mlir/test/python/dialects/builtin.py
@@ -134,13 +134,13 @@ def testBuildFuncOp():
                 ),
                 visibility="nested",
             )
-            # CHECK: Name is: "some_func"
+            # CHECK: Name is: some_func
             print("Name is: ", f.name)
 
             # CHECK: Type is: (tensor<2x3x4xf32>, tensor<2x3x4xf32>) -> tensor<2x3x4xf32>
             print("Type is: ", f.type)
 
-            # CHECK: Visibility is: "nested"
+            # CHECK: Visibility is: nested
             print("Visibility is: ", f.visibility)
 
             try:


        


More information about the Mlir-commits mailing list