aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/csource/csource_test.go
diff options
context:
space:
mode:
authorAlexander Potapenko <glider@google.com>2020-05-13 11:56:28 +0200
committerDmitry Vyukov <dvyukov@google.com>2020-05-13 13:05:41 +0200
commit88a97d1a7aaeeb0122cce296c696ad7927ed052e (patch)
tree4b9babbdfb6cf67dc277d6e1c7d575fca64e22cf /pkg/csource/csource_test.go
parentad606d93b28413409675d6a93631e15ea68b0ac2 (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.go2
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]