File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -195,8 +195,10 @@ test: wasi-libc
195195# implied -v flag).
196196.PHONY : tinygo-test
197197tinygo-test :
198+ $(TINYGO ) test container/heap
198199 $(TINYGO ) test container/list
199200 $(TINYGO ) test container/ring
201+ $(TINYGO ) test encoding/ascii85
200202 $(TINYGO ) test math
201203 $(TINYGO ) test text/scanner
202204 $(TINYGO ) test unicode/utf8
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ type TB interface {
4242 SkipNow ()
4343 Skipf (format string , args ... interface {})
4444 Skipped () bool
45- // Helper()
45+ Helper ()
4646}
4747
4848var _ TB = (* T )(nil )
@@ -154,6 +154,11 @@ func (c *common) Skipped() bool {
154154 return c .skipped
155155}
156156
157+ // Helper is not implemented, it is only provided for compatibility.
158+ func (c * common ) Helper () {
159+ // Unimplemented.
160+ }
161+
157162// InternalTest is a reference to a test that should be called during a test suite run.
158163type InternalTest struct {
159164 Name string
You can’t perform that action at this time.
0 commit comments