1{ 2 "version": "2.0.0", 3 "tasks": [ 4 { 5 "label": "Run with Prebuilt", 6 "type": "shell", 7 "isBackground": true, 8 "command": "./build-root/build-qemu-generic-arm64-test-debug/run", 9 "args": [ 10 "--debug" 11 ], 12 "problemMatcher": [ 13 { 14 "source": "trusty", 15 "pattern": [ 16 { 17 "file": 2, 18 "line": 4, 19 "message": 1, 20 "regexp": "^.*(Assertion failed: .*) \\((.*): (.*): (\\d+)\\)$" 21 } 22 ] 23 } 24 ] 25 }, 26 { 27 "label": "Send SIGINT to qemu.py", 28 "type": "shell", 29 "command": "./trusty/vendor/google/aosp/ide/vscode/kill_qemu_from_vscode.py", 30 "args": [ 31 "./build-root/build-qemu-generic-arm64-test-debug/run" 32 ] 33 } 34 ] 35} 36