diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2024-06-02 12:17:03 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-06-04 09:50:32 +0000 |
| commit | 11f2afa5a3c8cc88e10b001d6eb8790c8a3b91a7 (patch) | |
| tree | aed911ddb145445af02d18db7c0e73699522c2ef /pkg/runtest | |
| parent | 06bf8101debe879447d0ef3a7a5b84cb11fa5acf (diff) | |
sys/targets: mark big-endian targets
Litte-endian is kind of default (except for s390).
So instead of saying that each arch is litte-endian,
mark only s390 as big-endian.
Diffstat (limited to 'pkg/runtest')
| -rw-r--r-- | pkg/runtest/run.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/runtest/run.go b/pkg/runtest/run.go index 79d47d603..e0bf59816 100644 --- a/pkg/runtest/run.go +++ b/pkg/runtest/run.go @@ -232,7 +232,7 @@ nextSandbox: properties := map[string]bool{ "manual": ctx.Tests != "", // "manual" tests run only if selected by the filter explicitly. "sandbox=" + sandbox: true, - "littleendian": ctx.Target.LittleEndian, + "bigendian": sysTarget.BigEndian, } for _, threaded := range []bool{false, true} { name := name |
