[PATCH] D100138: Debug Go attribute test
Josh Haberman via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 8 14:04:28 PDT 2021
haberman updated this revision to Diff 336222.
haberman added a comment.
- Added import of fmt.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D100138/new/
https://reviews.llvm.org/D100138
Files:
llvm/bindings/go/llvm/ir_test.go
Index: llvm/bindings/go/llvm/ir_test.go
===================================================================
--- llvm/bindings/go/llvm/ir_test.go
+++ llvm/bindings/go/llvm/ir_test.go
@@ -15,6 +15,7 @@
import (
"strings"
"testing"
+ "fmt"
)
func testAttribute(t *testing.T, name string) {
@@ -89,6 +90,7 @@
}
for _, name := range attrTests {
+ fmt.Println("Testing attribute: ", name)
testAttribute(t, name)
}
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D100138.336222.patch
Type: text/x-patch
Size: 432 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210408/2e99756b/attachment.bin>
More information about the llvm-commits
mailing list