We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4065bd commit c2bc9f4Copy full SHA for c2bc9f4
vlib/sync/channel_select_test.v
@@ -7,8 +7,17 @@ module sync
7
// For that, please look at `channel_select_2_test.v` or `channel_select_3_test.v`
8
// This test case uses the implementation in `sync/channels.v` directly
9
// in order to test it independently from the support in the core language
10
+import os
11
import time
12
13
+fn test_should_run_flaky_test() {
14
+ if os.getenv('VTEST_RUN_FLAKY') != '1' {
15
+ eprintln('> skipping running flaky test, set VTEST_RUN_FLAKY to 1, to run it')
16
+ exit(0)
17
+ }
18
+ assert true
19
+}
20
+
21
fn do_rec_i64(mut ch Channel) {
22
mut sum := i64(0)
23
for _ in 0 .. 300 {
0 commit comments