File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -268,17 +268,17 @@ func testFile(arg string, extVars map[string]string) error {
268
268
269
269
sMsgs , err := setup .Transform (ctx , message .New ().AsControl ())
270
270
if err != nil {
271
- fmt .Printf ("?\t %s\t [test error]\n " , arg )
271
+ fmt .Printf ("?\t %s\t [test.transform error]\n " , arg )
272
+ fmt .Fprintf (os .Stderr , "\t \t %v\n " , err )
272
273
273
- //nolint:nilerr // errors should not disrupt the test.
274
274
return nil
275
275
}
276
276
277
277
tMsgs , err := tester .Transform (ctx , sMsgs ... )
278
278
if err != nil {
279
- fmt .Printf ("?\t %s\t [config error]\n " , arg )
279
+ fmt .Printf ("?\t %s\t [transform error]\n " , arg )
280
+ fmt .Fprintf (os .Stderr , "\t \t %v\n " , err )
280
281
281
- //nolint:nilerr // errors should not disrupt the test.
282
282
return nil
283
283
}
284
284
You can’t perform that action at this time.
0 commit comments