Project:
lixa
Code Location:
https://lixa.svn.sourceforge.net/svnroot/lixa/tests//tests
/
bug_2944441.at
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
76
77
78
79
80
81
82
83
84
85
86
87
88
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
76
77
78
79
80
81
82
83
84
85
86
87
88
AT_BANNER([LIXA chained transactions (bug 2944441)]) AT_SETUP([Chained transactions commit (2 RMs)]) AT_DATA([monkey1s.conf], [[# first monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_prepare/0 xa_commit/0 xa_start/-3 xa_close/0 ]]) AT_DATA([monkey1d.conf], [[# second monkey R.M. config xa_open/0 xa_end/0 xa_prepare/0 xa_commit/0 xa_close/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0003 ; lixa_test_exec.sh reset start case0003 commit -100], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([Chained transactions rollback (2 RMs)]) AT_DATA([monkey1s.conf], [[# first monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_rollback/0 xa_start/-3 xa_close/0 ]]) AT_DATA([monkey1d.conf], [[# second monkey R.M. config xa_open/0 xa_end/0 xa_rollback/0 xa_close/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0003 ; lixa_test_exec.sh noreset none case0003 rollback -100], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([Chained transactions commit (2 RMs)]) AT_DATA([monkey1s.conf], [[# first monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_prepare/0 xa_commit/0 xa_start/-3 xa_close/0 ]]) AT_DATA([monkey1d.conf], [[# second monkey R.M. config xa_open/0 xa_end/0 xa_prepare/0 xa_commit/5 xa_forget/0 xa_close/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0003 ; lixa_test_exec.sh noreset none case0003 commit -103], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([Chained transactions rollback (2 RMs)]) AT_DATA([monkey1s.conf], [[# first monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_prepare/0 xa_rollback/7 xa_forget/0 xa_start/-3 xa_close/0 ]]) AT_DATA([monkey1d.conf], [[# second monkey R.M. config xa_open/0 xa_end/0 xa_prepare/102 xa_close/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0003 ; lixa_test_exec.sh noreset stop case0003 commit -103], [0], [ignore], [ignore]) AT_CLEANUP
