Skip to content

Commit 2bd3914

Browse files
committed
Use one-line output by default in GNATprove tasks
1 parent 8af6a25 commit 2bd3914

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

integration/vscode/ada/src/taskProviders.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,7 @@ export const sparkTasks: SPARKPredefinedTask[] = [
292292
type: TASK_TYPE_SPARK,
293293
command: 'gnatprove',
294294
args: [
295+
'--output=oneline',
295296
`\${command:${CMD_GPR_PROJECT_ARGS}}`,
296297
'--mode=flow',
297298
`\${command:${CMD_SPARK_CURRENT_GNATPROVE_OPTIONS}}`,
@@ -308,6 +309,7 @@ export const sparkTasks: SPARKPredefinedTask[] = [
308309
type: TASK_TYPE_SPARK,
309310
command: 'gnatprove',
310311
args: [
312+
'--output=oneline',
311313
`\${command:${CMD_GPR_PROJECT_ARGS}}`,
312314
'--mode=flow',
313315
'-u',
@@ -326,6 +328,7 @@ export const sparkTasks: SPARKPredefinedTask[] = [
326328
type: TASK_TYPE_SPARK,
327329
command: 'gnatprove',
328330
args: [
331+
'--output=oneline',
329332
`\${command:${CMD_GPR_PROJECT_ARGS}}`,
330333
'--mode=flow',
331334
`\${command:${CMD_SPARK_LIMIT_SUBP_ARG}}`,
@@ -343,6 +346,7 @@ export const sparkTasks: SPARKPredefinedTask[] = [
343346
type: TASK_TYPE_SPARK,
344347
command: 'gnatprove',
345348
args: [
349+
'--output=oneline',
346350
`\${command:${CMD_GPR_PROJECT_ARGS}}`,
347351
`\${command:${CMD_SPARK_CURRENT_GNATPROVE_OPTIONS}}`,
348352
'-cargs',
@@ -358,6 +362,7 @@ export const sparkTasks: SPARKPredefinedTask[] = [
358362
type: TASK_TYPE_SPARK,
359363
command: 'gnatprove',
360364
args: [
365+
'--output=oneline',
361366
`\${command:${CMD_GPR_PROJECT_ARGS}}`,
362367
'-u',
363368
'${fileBasename}',
@@ -375,6 +380,7 @@ export const sparkTasks: SPARKPredefinedTask[] = [
375380
type: TASK_TYPE_SPARK,
376381
command: 'gnatprove',
377382
args: [
383+
'--output=oneline',
378384
`\${command:${CMD_GPR_PROJECT_ARGS}}`,
379385
`\${command:${CMD_SPARK_LIMIT_SUBP_ARG}}`,
380386
`\${command:${CMD_SPARK_CURRENT_GNATPROVE_OPTIONS}}`,
@@ -391,6 +397,7 @@ export const sparkTasks: SPARKPredefinedTask[] = [
391397
type: TASK_TYPE_SPARK,
392398
command: 'gnatprove',
393399
args: [
400+
'--output=oneline',
394401
`\${command:${CMD_GPR_PROJECT_ARGS}}`,
395402
'-u',
396403
'${fileBasename}',
@@ -409,6 +416,7 @@ export const sparkTasks: SPARKPredefinedTask[] = [
409416
type: TASK_TYPE_SPARK,
410417
command: 'gnatprove',
411418
args: [
419+
'--output=oneline',
412420
`\${command:${CMD_GPR_PROJECT_ARGS}}`,
413421
'-u',
414422
'${fileBasename}',

0 commit comments

Comments
 (0)