tasks.json 990 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. // See https://go.microsoft.com/fwlink/?LinkId=733558
  3. // for the documentation about the tasks.json format
  4. "version": "2.0.0",
  5. "tasks": [
  6. {
  7. "label": "saveAll",
  8. "command": "${command:workbench.action.files.saveAll}"
  9. },
  10. {
  11. "label": "autoupdate: toolchain tests",
  12. "type": "process",
  13. "command": "toolchain/autoupdate_testdata.py",
  14. "group": "build",
  15. "dependsOn": ["saveAll"],
  16. "dependsOrder": "sequence",
  17. "presentation": {
  18. "echo": false,
  19. "panel": "dedicated",
  20. "showReuseMessage": false,
  21. "clear": true
  22. },
  23. "problemMatcher": {
  24. "owner": "cpp",
  25. "fileLocation": ["relative", "${workspaceFolder}"],
  26. "source": "autoupdate",
  27. "pattern": {
  28. "regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
  29. "file": 1,
  30. "line": 2,
  31. "column": 3,
  32. "severity": 4,
  33. "message": 5
  34. }
  35. }
  36. }
  37. ]
  38. }