]> git.ipfire.org Git - thirdparty/bash.git/blame - tests/set-x.right
Bash-4.3 patch 7
[thirdparty/bash.git] / tests / set-x.right
CommitLineData
b80f6443
JA
1+ (( i=0 ))
2+ (( i<=5 ))
3+ x=0
4+ (( i++ ))
5+ (( i<=5 ))
6+ x=0
7+ (( i++ ))
8+ (( i<=5 ))
9+ x=0
10+ (( i++ ))
11+ (( i<=5 ))
12+ x=0
13+ (( i++ ))
14+ (( i<=5 ))
15+ x=0
16+ (( i++ ))
17+ (( i<=5 ))
18+ x=0
19+ (( i++ ))
20+ (( i<=5 ))
21+ for i in 0 1 2
22+ x=i
23+ for i in 0 1 2
24+ x=i
25+ for i in 0 1 2
26+ x=i
27+ case x in
28+ x=i
0001803f
CR
29+ set +x
301
312
323
334
34+ for f in a b c d e
35+ echo a
36a
37+ for f in a b c d e
38+ echo b
39b
40+ for f in a b c d e
41+ echo c
42c
43+ for f in a b c d e
44+ echo d
45d
46+ for f in a b c d e
47+ echo e
48e
49+ set +x
50TRACEFILE:
51+ echo 1
52+ echo 2
53+ echo 3
54+ echo 4
55+ unset BASH_XTRACEFD
56=====