Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,10 @@ test: wasi-libc
# implied -v flag).
.PHONY: tinygo-test
tinygo-test:
$(TINYGO) test container/heap
$(TINYGO) test container/list
$(TINYGO) test container/ring
$(TINYGO) test encoding/ascii85
$(TINYGO) test math
$(TINYGO) test text/scanner
$(TINYGO) test unicode/utf8
Expand Down
7 changes: 6 additions & 1 deletion src/testing/testing.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ type TB interface {
SkipNow()
Skipf(format string, args ...interface{})
Skipped() bool
// Helper()
Helper()
}

var _ TB = (*T)(nil)
Expand Down Expand Up @@ -154,6 +154,11 @@ func (c *common) Skipped() bool {
return c.skipped
}

// Helper is not implemented, it is only provided for compatibility.
func (c *common) Helper() {
// Unimplemented.
}

// InternalTest is a reference to a test that should be called during a test suite run.
type InternalTest struct {
Name string
Expand Down