@@ -30,7 +30,7 @@ func TestAllVersions(t *testing.T) {
30
30
}
31
31
32
32
t .Run (versionPath , func (t * testing.T ) {
33
- data , err := main_impl (filePath , true , true , true , true , 0 , "" )
33
+ data , err := main_impl (filePath , true , true , true , false , 0 , "" )
34
34
if err != nil {
35
35
t .Errorf ("Go %s failed on %s: %s" , v , file , err )
36
36
}
@@ -119,7 +119,7 @@ func testSymbolRecovery(t *testing.T, workingDirectory string, binaryName string
119
119
return
120
120
}
121
121
122
- data , err := main_impl (filePath , true , true , true , true , 0 , "" )
122
+ data , err := main_impl (filePath , true , true , true , false , 0 , "" )
123
123
if err != nil {
124
124
t .Errorf ("GoReSym failed: %s" , err )
125
125
}
@@ -214,7 +214,7 @@ func TestWeirdBins(t *testing.T) {
214
214
return
215
215
}
216
216
217
- _ , err := main_impl (filePath , true , true , true , true , 0 , "" )
217
+ _ , err := main_impl (filePath , true , true , true , false , 0 , "" )
218
218
if err == nil {
219
219
t .Errorf ("GoReSym found pclntab in a non-go binary, this is not possible." )
220
220
}
@@ -228,7 +228,7 @@ func TestWeirdBins(t *testing.T) {
228
228
return
229
229
}
230
230
231
- _ , err := main_impl (filePath , true , true , true , true , 0 , "" )
231
+ _ , err := main_impl (filePath , true , true , true , false , 0 , "" )
232
232
if err == nil {
233
233
t .Errorf ("GoReSym found pclntab in a non-go binary, this is not possible." )
234
234
}
0 commit comments