BIND 10 trac2157_2, updated. bce2a3f58dd9c95985a53c6235835aa9fb4c719d [2157] use predefined variable for awk path

BIND 10 source code commits bind10-changes at lists.isc.org
Thu Nov 22 06:08:12 UTC 2012


The branch, trac2157_2 has been updated
       via  bce2a3f58dd9c95985a53c6235835aa9fb4c719d (commit)
      from  4c3dc79c413854edcf660874f8bd58d626b808c8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit bce2a3f58dd9c95985a53c6235835aa9fb4c719d
Author: Yoshitaka Aharen <aharen at jprs.co.jp>
Date:   Thu Nov 22 15:07:22 2012 +0900

    [2157] use predefined variable for awk path

-----------------------------------------------------------------------

Summary of changes:
 tests/system/bindctl/tests.sh |   18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

-----------------------------------------------------------------------
diff --git a/tests/system/bindctl/tests.sh b/tests/system/bindctl/tests.sh
index 090791c..9ce3ca7 100755
--- a/tests/system/bindctl/tests.sh
+++ b/tests/system/bindctl/tests.sh
@@ -55,31 +55,31 @@ BEGIN {
 # since the content of datasource and requests are not changed in this test. 
 test_counters () {
     status=0
-    awk "$awk_flatten_json" bindctl.out.$n | \
+    $AWK "$awk_flatten_json" bindctl.out.$n | \
         grep '"Auth":"zones":"_SERVER_":"request":"v4": '$1 > \
         /dev/null || status=1
-    awk "$awk_flatten_json" bindctl.out.$n | \
+    $AWK "$awk_flatten_json" bindctl.out.$n | \
         grep '"Auth":"zones":"_SERVER_":"request":"v6": '0 > \
         /dev/null || status=1
-    awk "$awk_flatten_json" bindctl.out.$n | \
+    $AWK "$awk_flatten_json" bindctl.out.$n | \
         grep '"Auth":"zones":"_SERVER_":"request":"udp": '$1 > \
         /dev/null || status=1
-    awk "$awk_flatten_json" bindctl.out.$n | \
+    $AWK "$awk_flatten_json" bindctl.out.$n | \
         grep '"Auth":"zones":"_SERVER_":"request":"tcp": '0 > \
         /dev/null || status=1
-    awk "$awk_flatten_json" bindctl.out.$n | \
+    $AWK "$awk_flatten_json" bindctl.out.$n | \
         grep '"Auth":"zones":"_SERVER_":"opcode":"query": '$1 > \
         /dev/null || status=1
-    awk "$awk_flatten_json" bindctl.out.$n | \
+    $AWK "$awk_flatten_json" bindctl.out.$n | \
         grep '"Auth":"zones":"_SERVER_":"responses": '$1 > \
         /dev/null || status=1
-    awk "$awk_flatten_json" bindctl.out.$n | \
+    $AWK "$awk_flatten_json" bindctl.out.$n | \
         grep '"Auth":"zones":"_SERVER_":"rcode":"noerror": '$1 > \
         /dev/null || status=1
-    awk "$awk_flatten_json" bindctl.out.$n | \
+    $AWK "$awk_flatten_json" bindctl.out.$n | \
         grep '"Auth":"zones":"_SERVER_":"qrysuccess": '$1 > \
         /dev/null || status=1
-    awk "$awk_flatten_json" bindctl.out.$n | \
+    $AWK "$awk_flatten_json" bindctl.out.$n | \
         grep '"Auth":"zones":"_SERVER_":"qryauthans": '$1 > \
         /dev/null || status=1
     return $status



More information about the bind10-changes mailing list