blob: 4fc218ed00dd06ccafd39619e4a2888067b4560a (
plain)
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
75
|
Parsed test spec with 2 sessions
starting permutation: wait1 wakeup2 noop1 detach2
injection_points_attach
-----------------------
(1 row)
step wait1: SELECT injection_points_run('injection-points-wait'); <waiting ...>
step wakeup2: SELECT injection_points_wakeup('injection-points-wait');
injection_points_wakeup
-----------------------
(1 row)
step wait1: <... completed>
injection_points_run
--------------------
(1 row)
step noop1:
step detach2: SELECT injection_points_detach('injection-points-wait');
injection_points_detach
-----------------------
(1 row)
starting permutation: wait1 detach2 wakeup2
injection_points_attach
-----------------------
(1 row)
step wait1: SELECT injection_points_run('injection-points-wait'); <waiting ...>
step detach2: SELECT injection_points_detach('injection-points-wait');
injection_points_detach
-----------------------
(1 row)
step wakeup2: SELECT injection_points_wakeup('injection-points-wait');
injection_points_wakeup
-----------------------
(1 row)
step wait1: <... completed>
injection_points_run
--------------------
(1 row)
starting permutation: detach2 wait1 wakeup2
injection_points_attach
-----------------------
(1 row)
step detach2: SELECT injection_points_detach('injection-points-wait');
injection_points_detach
-----------------------
(1 row)
step wait1: SELECT injection_points_run('injection-points-wait');
injection_points_run
--------------------
(1 row)
step wakeup2: SELECT injection_points_wakeup('injection-points-wait');
ERROR: could not find injection point injection-points-wait to wake up
|