• Home
  • Raw
  • Download

Lines Matching refs:Inputs

33 		if len(libfooShared.Inputs) != 1 {
34 t.Fatalf("unexpected inputs to libfoo shared: %#v", libfooShared.Inputs.Strings())
37 if len(libfooStatic.Inputs) != 1 {
38 t.Fatalf("unexpected inputs to libfoo static: %#v", libfooStatic.Inputs.Strings())
41 if libfooShared.Inputs[0] != libfooStatic.Inputs[0] {
59 if len(libfooShared.Inputs) != 1 {
60 t.Fatalf("unexpected inputs to libfoo shared: %#v", libfooShared.Inputs.Strings())
63 if len(libfooStatic.Inputs) != 2 {
64 t.Fatalf("unexpected inputs to libfoo static: %#v", libfooStatic.Inputs.Strings())
67 if libfooShared.Inputs[0] != libfooStatic.Inputs[0] {
85 if len(libfooShared.Inputs) != 2 {
86 t.Fatalf("unexpected inputs to libfoo shared: %#v", libfooShared.Inputs.Strings())
89 if len(libfooStatic.Inputs) != 1 {
90 t.Fatalf("unexpected inputs to libfoo static: %#v", libfooStatic.Inputs.Strings())
93 if libfooShared.Inputs[0] != libfooStatic.Inputs[0] {
111 if len(libfooShared.Inputs) != 1 {
112 t.Fatalf("unexpected inputs to libfoo shared: %#v", libfooShared.Inputs.Strings())
115 if len(libfooStatic.Inputs) != 1 {
116 t.Fatalf("unexpected inputs to libfoo static: %#v", libfooStatic.Inputs.Strings())
119 if libfooShared.Inputs[0] == libfooStatic.Inputs[0] {
137 if len(libfooShared.Inputs) != 1 {
138 t.Fatalf("unexpected inputs to libfoo shared: %#v", libfooShared.Inputs.Strings())
141 if len(libfooStatic.Inputs) != 1 {
142 t.Fatalf("unexpected inputs to libfoo static: %#v", libfooStatic.Inputs.Strings())
145 if libfooShared.Inputs[0] == libfooStatic.Inputs[0] {
168 if len(libfooShared.Inputs) != 3 {
169 t.Fatalf("unexpected inputs to libfoo shared: %#v", libfooShared.Inputs.Strings())
172 if len(libfooStatic.Inputs) != 2 {
173 t.Fatalf("unexpected inputs to libfoo static: %#v", libfooStatic.Inputs.Strings())
176 if !reflect.DeepEqual(libfooShared.Inputs[0:2].Strings(), libfooStatic.Inputs.Strings()) {