-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch.json
69 lines (69 loc) · 2.43 KB
/
launch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Run test",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/tests/snippets/${input:testName}",
"cwd": "${fileDirname}",
"environment": [
{
"name": "LD_LIBRARY_PATH",
"value": "${workspaceFolder}/src"
},
],
"MIMode": "gdb"
}
],
"inputs": [
{
"id": "testName",
"description": "Select test to run",
"type": "pickString",
"options": [
"test-all",
"test-calloc-arrays",
"test-calloc-block-reuse",
"test-calloc-coalesce",
"test-calloc-coalesce-big",
"test-calloc-expand-block",
"test-calloc-no-preallocate",
"test-calloc-no-split",
"test-calloc-preallocate",
"test-calloc-split-first",
"test-calloc-split-last",
"test-calloc-split-middle",
"test-calloc-split-one-block",
"test-calloc-split-vector",
"test-malloc-arrays",
"test-malloc-block-reuse",
"test-malloc-coalesce",
"test-malloc-coalesce-big",
"test-malloc-expand-block",
"test-malloc-no-preallocate",
"test-malloc-no-split",
"test-malloc-preallocate",
"test-malloc-split-first",
"test-malloc-split-last",
"test-malloc-split-middle",
"test-malloc-split-one-block",
"test-malloc-split-vector",
"test-realloc-arrays",
"test-realloc-block-reuse",
"test-realloc-coalesce",
"test-realloc-coalesce-big",
"test-realloc-expand-block",
"test-realloc-no-preallocate",
"test-realloc-no-split",
"test-realloc-preallocate",
"test-realloc-split-first",
"test-realloc-split-last",
"test-realloc-split-middle",
"test-realloc-split-one-block",
"test-realloc-split-vector"
],
}
]
}