Skip to content

Instantly share code, notes, and snippets.

@navyxliu
Created April 28, 2020 22:05
Show Gist options
  • Save navyxliu/c92b78cad82be1b87988a05f6e61ba3c to your computer and use it in GitHub Desktop.
Save navyxliu/c92b78cad82be1b87988a05f6e61ba3c to your computer and use it in GitHub Desktop.
hotspot development tasks.json
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "reconfigure",
"type": "shell",
"command": "make reconfigure CONF=linux-x86_64-server-fastdebug LOG=info",
"problemMatcher": [],
"options": {
"cwd": "${workspaceFolder}/../../",
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "fastdebug",
"type": "shell",
"command": "make hotspot CONF=linux-x86_64-server-fastdebug LOG=info",
"problemMatcher": ["$gcc"],
"options": {
"cwd": "${workspaceFolder}/../../",
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "hs-tier1",
"type": "shell",
"command": "make test CONF=linux-x86_64-server-fastdebug TEST=\"hotspot:tier1\"",
"dependsOn": ["fastdebug"],
"problemMatcher": [],
"options": {
"cwd": "${workspaceFolder}/../../",
},
"group": {
"kind": "test",
"isDefault": true
}
},
{
"label": "gtest_all",
"type": "shell",
"command": "make test CONF=linux-x86_64-server-fastdebug TEST=\"gtest:all\"",
"dependsOn": ["fastdebug"],
"problemMatcher": [],
"options": {
"cwd": "${workspaceFolder}/../../",
},
"group": {
"kind": "test",
"isDefault": true
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment