diff options
| author | Alexander Potapenko <glider@google.com> | 2020-05-13 11:56:28 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-05-13 13:05:41 +0200 |
| commit | 88a97d1a7aaeeb0122cce296c696ad7927ed052e (patch) | |
| tree | 4b9babbdfb6cf67dc277d6e1c7d575fca64e22cf /pkg/csource/csource_test.go | |
| parent | ad606d93b28413409675d6a93631e15ea68b0ac2 (diff) | |
Get rid of "Cross" in variable names
Renamed Target.BrokenCrossCompiler to Target.BrokenCompiler and
Target.CrossCFlags to Target.CFlags
"Everything in Target is about Cross now."
Signed-off-by: Alexander Potapenko <glider@google.com>
Diffstat (limited to 'pkg/csource/csource_test.go')
| -rw-r--r-- | pkg/csource/csource_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/csource/csource_test.go b/pkg/csource/csource_test.go index f8248499e..61b6bcf31 100644 --- a/pkg/csource/csource_test.go +++ b/pkg/csource/csource_test.go @@ -32,7 +32,7 @@ func TestGenerate(t *testing.T) { continue } t.Run(target.OS+"/"+target.Arch, func(t *testing.T) { - if err := sysTarget.BrokenCrossCompiler; err != "" { + if err := sysTarget.BrokenCompiler; err != "" { t.Skipf("target compiler is broken: %v", err) } full := !checked[target.OS] |
