aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAyke van Laethem <[email protected]>2020-01-15 20:09:26 +0100
committerRon Evans <[email protected]>2020-01-20 20:30:42 +0100
commit3729fcfa9edba2230aba65bcd607621d3285704f (patch)
tree3badc7d72671d3fb2ea74264cd50a33ccfaa2d99
parent8f8232aada70f3f939f1d18cedad0d6cc3b4db31 (diff)
downloadtinygo-3729fcfa9edba2230aba65bcd607621d3285704f.tar.gz
tinygo-3729fcfa9edba2230aba65bcd607621d3285704f.zip
wasm: don't skip the GC test
Finally, all tests run on all targets!
-rw-r--r--main_test.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/main_test.go b/main_test.go
index 3287025fc..dbdca1f87 100644
--- a/main_test.go
+++ b/main_test.go
@@ -74,16 +74,6 @@ func runPlatTests(target string, matches []string, t *testing.T) {
for _, path := range matches {
path := path // redefine to avoid race condition
- switch {
- case target == "wasm":
- // testdata/gc.go is known not to work on WebAssembly
- if path == filepath.Join("testdata", "gc.go") {
- continue
- }
- default:
- // all tests are supported
- }
-
t.Run(filepath.Base(path), func(t *testing.T) {
t.Parallel()