[git commit] testsuite: some more awk tests related to conditions

Denys Vlasenko vda.linux at googlemail.com
Mon Jun 11 08:33:45 UTC 2012


commit: http://git.busybox.net/busybox/commit/?id=0a393cf7da9003d0d64e1868c13ef206af125451
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Tanguy Pruvot <tanguy.pruvot at gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 testsuite/awk.tests |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/testsuite/awk.tests b/testsuite/awk.tests
index 5a32304..e671907 100755
--- a/testsuite/awk.tests
+++ b/testsuite/awk.tests
@@ -16,6 +16,13 @@ testing "awk -F case 5" "awk -F '[#]' '{ print NF }'" "4\n" "" "#abc##zz\n"
 testing "awk -F case 6" "awk -F '[#]' '{ print NF }'" "4\n" "" "z#abc##zz\n"
 testing "awk -F case 7" "awk -F '[#]' '{ print NF }'" "5\n" "" "z##abc##zz\n"
 
+# conditions and operators
+testing "awk if operator == "  "awk 'BEGIN{if(23==23) print \"foo\"}'" "foo\n" "" ""
+testing "awk if operator != "  "awk 'BEGIN{if(23!=23) print \"bar\"}'" ""      "" ""
+testing "awk if operator >= "  "awk 'BEGIN{if(23>=23) print \"foo\"}'" "foo\n" "" ""
+testing "awk if operator < "   "awk 'BEGIN{if(2 < 13) print \"foo\"}'" "foo\n" "" ""
+testing "awk if string == "    "awk 'BEGIN{if(\"a\"==\"ab\") print \"bar\"}'" "" "" ""
+
 # 4294967295 = 0xffffffff
 testing "awk bitwise op"  "awk '{ print or(4294967295,1) }'" "4.29497e+09\n" "" "\n"
 optional DESKTOP


More information about the busybox-cvs mailing list