diff options
Diffstat (limited to 'source4/lib/ldb')
-rw-r--r-- | source4/lib/ldb/tests/test-tdb-features.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/source4/lib/ldb/tests/test-tdb-features.sh b/source4/lib/ldb/tests/test-tdb-features.sh index 7ed55430f7..3a7c50eae7 100644 --- a/source4/lib/ldb/tests/test-tdb-features.sh +++ b/source4/lib/ldb/tests/test-tdb-features.sh @@ -74,5 +74,25 @@ EOF checkcount 1 '(i=0x100)' checkcount 1 '(i=256)' +echo "adding j" +cat <<EOF | bin/ldbmodify || exit 1 +dn: cn=t1,cn=TEST +changetype: modify +add: j +j: 0x100 +EOF +checkcount 1 '(i=0x100)' +checkcount 0 '(i=256)' + +echo "Adding wildcard attribute" +echo "marking i as INTEGER" +cat <<EOF | bin/ldbmodify || exit 1 +dn: @ATTRIBUTES +changetype: modify +add: * +*: INTEGER +EOF +checkcount 1 '(i=0x100)' +checkcount 1 '(i=256)' rm -f $LDB_URL |