diff options
| author | Mark Johnston <markjdb@gmail.com> | 2020-08-10 10:59:58 -0400 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-08-12 18:09:10 +0200 |
| commit | 1bf9153625ea4fb8788b2181a94e891b84cb283b (patch) | |
| tree | 1aa3780399095f6bc72bbe7b45c9259e5868b5a6 /pkg | |
| parent | b38f46a018e3a069025b17335d5e98d1b8b55b0c (diff) | |
pkg/runtest: re-enable 32-bit test target tests on FreeBSD
They now pass since we set DataOffset correctly for those targets.
This reverts 594e57536fbab6e403f888f0831240448ffc810d.
Diffstat (limited to 'pkg')
| -rw-r--r-- | pkg/runtest/run_test.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/pkg/runtest/run_test.go b/pkg/runtest/run_test.go index 0b56ed53b..d9fdadfab 100644 --- a/pkg/runtest/run_test.go +++ b/pkg/runtest/run_test.go @@ -34,11 +34,6 @@ func Test(t *testing.T) { continue } sysTarget1 := targets.Get(sysTarget.OS, sysTarget.Arch) - if runtime.GOOS == "freebsd" && sysTarget1.PtrSize == 4 { - // The default DataOffset collides with a runtime mapping - // on FreeBSD. - continue - } t.Run(sysTarget1.Arch, func(t *testing.T) { t.Parallel() test(t, sysTarget1) |
