mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-26 06:38:42 +00:00
smoketest: add regression test for 'tinygo test ./...', see #2892
tests/testing/recurse has two directories with tests; "make smoketest" now does "tinygo test ./..." in that directory and fails if it does not run both directories' tests.
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
package subdir
|
||||
|
||||
import "testing"
|
||||
|
||||
func TestSubdir(t *testing.T) {
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package top
|
||||
|
||||
import "testing"
|
||||
|
||||
func TestTop(t *testing.T) {
|
||||
}
|
||||
Reference in New Issue
Block a user