Merge branch 'js/t0001-case-insensitive' into maint
[gitweb.git] / t / t0011-hashmap.sh
index 391e2b64927d7d095df2569a4e56ea075a391d78..3f1f505e8937f391666a1b7e6d9b972a5f146974 100755 (executable)
@@ -4,7 +4,7 @@ test_description='test hashmap and string hash functions'
 . ./test-lib.sh
 
 test_hashmap() {
-       echo "$1" | test-hashmap $3 > actual &&
+       echo "$1" | test-tool hashmap $3 > actual &&
        echo "$2" > expect &&
        test_cmp expect actual
 }
@@ -218,7 +218,7 @@ test_expect_success 'grow / shrink' '
        echo size >> in &&
        echo 64 51 >> expect &&
        echo put key52 value52 >> in &&
-       echo NULL >> expect
+       echo NULL >> expect &&
        echo size >> in &&
        echo 256 52 >> expect &&
        for n in $(test_seq 12)
@@ -232,9 +232,22 @@ test_expect_success 'grow / shrink' '
        echo value40 >> expect &&
        echo size >> in &&
        echo 64 39 >> expect &&
-       cat in | test-hashmap > out &&
+       cat in | test-tool hashmap > out &&
        test_cmp expect out
 
 '
 
+test_expect_success 'string interning' '
+
+test_hashmap "intern value1
+intern Value1
+intern value2
+intern value2
+" "value1
+Value1
+value2
+value2"
+
+'
+
 test_done