From 11f2afa5a3c8cc88e10b001d6eb8790c8a3b91a7 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sun, 2 Jun 2024 12:17:03 +0200 Subject: 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. --- pkg/runtest/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/runtest') 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 -- cgit mrf-deployment