diff options
author | Ayke van Laethem <[email protected]> | 2022-01-05 03:12:45 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2022-01-09 11:04:10 +0100 |
commit | 32a7b8cc4e78799c6447064b9f5576c7f16c4f88 (patch) | |
tree | f052e1891d1f82e4d4df9867a9eaf5f616ee1fca /main_test.go | |
parent | b4fa6587052f702f6ca26d9e6f2192b02b34f4e8 (diff) | |
download | tinygo-32a7b8cc4e78799c6447064b9f5576c7f16c4f88.tar.gz tinygo-32a7b8cc4e78799c6447064b9f5576c7f16c4f88.zip |
avr: use a stack size of 512 bytes for testing
The goroutine tests are failing with the default 256 byte stack size.
Diffstat (limited to 'main_test.go')
-rw-r--r-- | main_test.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/main_test.go b/main_test.go index e8dbf7d1a..5cd4fefd6 100644 --- a/main_test.go +++ b/main_test.go @@ -173,9 +173,7 @@ func TestBuild(t *testing.T) { avrTests = append(avrTests, t) } } - opts := optionsFromTarget("atmega1284p", sema) - opts.Scheduler = "tasks" - runPlatTests(opts, avrTests, t) + runPlatTests(optionsFromTarget("simavr", sema), avrTests, t) }) if runtime.GOOS == "linux" { |