-
Notifications
You must be signed in to change notification settings - Fork 699
/
CMakePresets.json
74 lines (74 loc) · 1.59 KB
/
CMakePresets.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
70
71
72
73
74
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 13
},
"configurePresets": [
{
"name": "ci-network-tests",
"displayName": "Network tests (CI)",
"description": "Preset for network tests on CI",
"generator": "Ninja",
"binaryDir": "/home/build",
"cacheVariables": {
"CMAKE_CXX_FLAGS_INIT": {
"type": "STRING",
"value": "--coverage -Wno-error=tsan -fprofile-update=atomic"
},
"TEST_IP_SLAVE_SECOND": {
"type": "STRING",
"value": "$penv{IP_SLAVE_2ND}"
},
"TEST_GID": {
"type": "STRING",
"value": "0"
},
"TEST_UID": {
"type": "STRING",
"value": "0"
}
},
"environment": {
"GTEST_ROOT": "/usr/src/googletest"
}
}
],
"buildPresets": [
{
"name": "ci-network-tests",
"displayName": "Network tests (CI)",
"description": "Preset for network tests on CI",
"configurePreset": "ci-network-tests",
"targets": "build_network_tests"
}
],
"testPresets": [
{
"name": "ci-network-tests",
"displayName": "Network tests (CI)",
"description": "Preset for network tests on CI",
"environment": {
"LD_LIBRARY_PATH": "/home/build",
"LXC_TEST_MASTER_IP": "master",
"LXC_TEST_SLAVE_IP": "slave",
"TSAN_OPTIONS": "suppressions=${sourceDir}/test/tsan-suppressions.txt",
"USE_LXC_TEST": "1"
},
"configurePreset": "ci-network-tests",
"output": {
"maxFailedTestOutputSize": 1e6,
"maxPassedTestOutputSize": 1e6,
"outputOnFailure": true
},
"execution": {
"timeout": 150
},
"filter": {
"exclude": {
"name": "^unit_"
}
}
}
]
}