diff options
Diffstat (limited to 'pkg')
| -rw-r--r-- | pkg/runtest/run.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pkg/runtest/run.go b/pkg/runtest/run.go index 62d11ebdb..eb1d0b131 100644 --- a/pkg/runtest/run.go +++ b/pkg/runtest/run.go @@ -233,9 +233,10 @@ nextSandbox: } } properties := map[string]bool{ - "manual": ctx.Tests != "", // "manual" tests run only if selected by the filter explicitly. - "sandbox=" + sandbox: true, - "bigendian": sysTarget.BigEndian, + "manual": ctx.Tests != "", // "manual" tests run only if selected by the filter explicitly. + "sandbox=" + sandbox: true, + "bigendian": sysTarget.BigEndian, + "arch=" + ctx.Target.Arch: true, } for _, threaded := range []bool{false, true} { name := name |
