diff options
author | Ayke van Laethem <[email protected]> | 2021-04-15 23:04:05 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2021-04-21 10:32:09 +0200 |
commit | c47cdfa66fe38cfad268615e093969bb136bae07 (patch) | |
tree | fc21ea3dba4a81c4dfb2cab206ddefe10b7f8653 /main_test.go | |
parent | 768a15c1dd83a462f77a835581357572e3962dbc (diff) | |
download | tinygo-c47cdfa66fe38cfad268615e093969bb136bae07.tar.gz tinygo-c47cdfa66fe38cfad268615e093969bb136bae07.zip |
runtime: implement environment variables for Linux
Diffstat (limited to 'main_test.go')
-rw-r--r-- | main_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main_test.go b/main_test.go index 69fe99e67..c9b02ba8c 100644 --- a/main_test.go +++ b/main_test.go @@ -163,7 +163,7 @@ func runPlatTests(target string, tests []string, t *testing.T) { runTest(name, target, t, nil) }) } - if target == "wasi" || target == "" && runtime.GOOS == "darwin" { + if target == "wasi" || target == "" { t.Run("filesystem.go", func(t *testing.T) { t.Parallel() runTest("filesystem.go", target, t, nil) |