summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/tests/test-schema.sh
blob: 5423c7eff97c4887c63de220b5e202128d6ad0af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

export LDB_URL="tdb://schema.ldb"

rm -f schema.ldb

echo "LDB_URL: $LDB_URL"

echo "Adding schema"
$VALGRIND bin/ldbadd tests/schema.ldif || exit 1

echo "Adding few test elements (no failure expected here)"
$VALGRIND bin/ldbadd tests/schema-add-test.ldif || exit 1

echo "Modifying elements (2 failures expected here)"
$VALGRIND bin/ldbmodify tests/schema-mod-test.ldif

echo "Showing modified record"
$VALGRIND bin/ldbsearch '(cn=Test)'  || exit 1