Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Experiment, parallelize some tests #17662
Experiment, parallelize some tests #17662
Changes from 160 commits
4471183
932d12c
1c945b5
8ff95d4
003399a
219b1de
c2ec08b
1700504
7501dc3
7f9798f
c6ab38d
4e9e461
249b1cf
ef14588
87ad15c
3d32f29
e8e8413
67ef5f5
6af4cc6
0980059
5566d20
3484eb6
e438909
57af1fc
00e5a8c
1d42877
a7057e6
0508ee3
54c0d73
f1fe29f
0fee2b9
e185fb2
f9119a9
06164d8
99b5834
317e63b
177c978
f528a3d
74dd7a7
1457693
62f5a4a
dfb9dcc
d5c8225
66f872c
ee9cd17
5b7ceca
75fffe0
128b54b
b179542
46f4b9f
c4f266a
933304a
b1856d6
4fda023
82097c9
fe07d6e
5401109
1710554
594c0e4
c7adebd
5c4243c
6345fa8
93aeccb
9bd9127
f5c04f2
a5ddb60
9e20af8
bc80641
278155e
8f6f351
7c5d38a
3d8807e
3b7b9b9
e1cef65
81cf0fc
5e7e1e8
ce975d2
4f6bf47
581b628
f02bd73
cd6a7ef
e5e01c9
976d0b1
b847f01
0e22b65
2d90586
a7143af
0b70050
3dae769
b6423af
64cca70
329cff1
06c57c8
75da7ba
d86d315
bb407bd
3e24367
179786e
3f456b9
2ca5cf5
5cb5c5a
a4ff92c
eaaff9d
57db5c8
7bd3aad
db0858e
9665470
b18ad46
12147df
ca97cd3
25e0f8e
fd53253
6a5571c
04e0054
523ff71
51b2a13
6b26789
c5e8d55
0249595
b3e2f2c
18be588
3cc25cf
4407cce
8fe73de
a86abd1
ad9ed63
27d0b13
00239f8
a8bb384
92e0ec3
492d831
693b5d7
acdea50
a5437f5
bcffaef
88b2a18
f076559
419cd8f
ac7e5ac
4177685
1a74c46
1936e63
d338a56
6cbbbf4
cd0f578
e8992ef
7743378
430b0aa
dea2b68
fa2872c
33b4aa6
eba1a25
e459c90
45fa650
235cc05
5e98984
260d56e
22d2cdd
ad79741
b19b919
9806a86
1ebbbc5
9851e4c
f9a0ad0
671ed78
ce391ea
ae883a9
914086c
1981299
02ce51a
358e743
e338476
71c3437
9de5711
8fc65b9
5c4efe9
1ad3349
044396a
496973f
7ffa352
e3c95c9
9d66464
6695851
cc1f24e
b7808ba
70e5f12
f22e7ef
41476a9
bfabd4b
1bdcd87
7191a17
4d9805e
d9cc66e
00e6f8b
9f7bd1a
f975162
a5f6e02
b4176f4
0323d65
1ec7718
d36aa93
e9c2cd2
c2f7745
eeb5029
7b95e1d
fc5b9fa
ff67a04
7119173
68304f5
abf9a63
d1a672c
0a243ea
eb25ca7
9fe6f3c
026d1fc
f50bc4c
3d8d2ac
20ad10f
fd76eb2
736ffc4
6936121
c632695
0276755
5d2ccd6
f961823
e75f796
f77ec61
0bee824
76fc354
346ddb7
5643336
ae81bd6
601bf47
22ee1c6
635ba14
aa570c6
24b6f00
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the reason for this change? It might be a good idea in general, just asking how did you stumble on it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is out of desperation. I'm seeing OperationCancelledException in various test cases. We do a lot of RunSychronously / RunImmediate in the tests but also in FCS. I have no idea how to debug this, because it's very random, but my intuition is that Async.CancelDefaultToken() called in some test cases kills the asyncs in the same process? I have no idea if this makes sense, so this one is just experimental.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vzarytovskii you might have some knowledge here?