diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-05-30 21:15:20 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-05-30 21:15:20 +0300 |
commit | 9dfa2ba854a2d7b7835274cf60a31294664612f3 (patch) | |
tree | c264f3e3d9da5ff2207d7a3034885e942c47a3b6 /test/profile4.awk | |
parent | 99f48db79898094a62c5177161a3a24794239ac3 (diff) | |
download | egawk-9dfa2ba854a2d7b7835274cf60a31294664612f3.tar.gz egawk-9dfa2ba854a2d7b7835274cf60a31294664612f3.tar.bz2 egawk-9dfa2ba854a2d7b7835274cf60a31294664612f3.zip |
Additional profiling tests.
Diffstat (limited to 'test/profile4.awk')
-rw-r--r-- | test/profile4.awk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/profile4.awk b/test/profile4.awk new file mode 100644 index 00000000..11a3dbd4 --- /dev/null +++ b/test/profile4.awk @@ -0,0 +1,8 @@ +BEGIN { + a = ("foo" (c = "bar")) + a = (b - c) "foo" + a = "foo" (b - c) + q = (d = "x") (e = "y") + a = ((c = tolower("FOO")) in JUNK) + x = (y == 0 && z == 2 && q == 45) +} |