~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to test/nasty2.awk

  • Committer: Arnold D. Robbins
  • Date: 2010-07-16 10:09:56 UTC
  • Revision ID: git-v1:bc70de7b3302d5a81515b901cae376b8b51d2004
Tags: gawk-3.1.0
Move to gawk-3.1.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Based on nasty.awk, test same thing for printf
 
2
#
 
3
BEGIN {
 
4
a="aaaaa"
 
5
a=a a #10
 
6
a=a a #20
 
7
a=a a #40
 
8
a=a a #80
 
9
a=a a #160
 
10
a=a a # i.e. a is long enough
 
11
 
 
12
printf("a = %s, f() = %s\n", a, f())
 
13
print a
 
14
}
 
15
 
 
16
function f()
 
17
{
 
18
gsub(/a/, "123", a)
 
19
return "X"
 
20
}