File: iprint

package info (click to toggle)
fped 0.1%2B201210-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 948 kB
  • ctags: 1,663
  • sloc: ansic: 12,650; yacc: 1,112; sh: 974; lex: 204; makefile: 140; awk: 75
file content (101 lines) | stat: -rwxr-xr-x 1,580 bytes parent folder | download | duplicates (3)
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
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/bin/sh
. ./Common

###############################################################################

fped "iprint: loop" <<EOF
loop x = 1, 3
%iprint x
EOF
expect <<EOF
1
2
3
EOF

#------------------------------------------------------------------------------

fped "iprint: two tables (independent)" <<EOF
table { a } { 1 } { 2 }
table { b } { 3 } { 4 }

%iprint a*10+b
EOF
expect <<EOF
13
14
23
24
EOF

#------------------------------------------------------------------------------

fped "iprint: two tables (2nd references 1st)" <<EOF
table { a } { 1 } { 2 }
table { b } { 3+a } { 4+a }

%iprint a*10+b
EOF
expect <<EOF
14
15
25
26
EOF

#------------------------------------------------------------------------------

fped "iprint: two tables (1st references 2nd)" <<EOF
table { a } { 1+b } { 2+b }
table { b } { 3 } { 4 }

%iprint a*10+b
EOF
expect <<EOF
43
54
53
64
EOF

#------------------------------------------------------------------------------

fped "iprint: inside frame (global variable)" <<EOF
frame foo {
	%iprint n
}

loop n = 1, 2
frame foo @
EOF
expect <<EOF
1
2
EOF

#------------------------------------------------------------------------------

fped "iprint: inside frame (local variable) " <<EOF
frame foo {
	set n1 = n+1
	%iprint n1
}

loop n = 1, 2
frame foo @
EOF
expect <<EOF
2
3
EOF

#------------------------------------------------------------------------------

fped_fail "iprint: undefined variable" <<EOF
%iprint foo
EOF
expect <<EOF
undefined variable "foo"
EOF

###############################################################################