Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Side by Side Diff: third_party/grpc/tools/run_tests/configs.json

Issue 1932353002: Initial checkin of gRPC to third_party/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 [
2 {
3 "config": "opt"
4 },
5 {
6 "config": "basicprof"
7 },
8 {
9 "config": "helgrind",
10 "timeout_multiplier": 20,
11 "tool_prefix": [
12 "valgrind",
13 "--tool=helgrind"
14 ]
15 },
16 {
17 "config": "asan-noleaks",
18 "environ": {
19 "ASAN_OPTIONS": "detect_leaks=0:color=always"
20 },
21 "timeout_multiplier": 3
22 },
23 {
24 "config": "ubsan",
25 "timeout_multiplier": 1.5
26 },
27 {
28 "config": "dbg"
29 },
30 {
31 "config": "stapprof"
32 },
33 {
34 "config": "gcov"
35 },
36 {
37 "config": "memcheck",
38 "timeout_multiplier": 10,
39 "tool_prefix": [
40 "valgrind",
41 "--tool=memcheck",
42 "--leak-check=full"
43 ]
44 },
45 {
46 "config": "asan",
47 "environ": {
48 "ASAN_OPTIONS": "detect_leaks=1:color=always",
49 "LSAN_OPTIONS": "suppressions=tools/lsan_suppressions.txt:report_objects=1 "
50 },
51 "timeout_multiplier": 3
52 },
53 {
54 "config": "tsan",
55 "environ": {
56 "TSAN_OPTIONS": "suppressions=tools/tsan_suppressions.txt:halt_on_error=1: second_deadlock_stack=1"
57 },
58 "timeout_multiplier": 5
59 },
60 {
61 "config": "msan",
62 "timeout_multiplier": 4
63 },
64 {
65 "config": "mutrace"
66 }
67 ]
OLDNEW
« no previous file with comments | « third_party/grpc/tools/run_tests/build_ruby.sh ('k') | third_party/grpc/tools/run_tests/distribtest_targets.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698