mirror of
https://github.com/osixia/container-openldap.git
synced 2026-09-24 07:25:17 -05:00
16 lines
322 B
Bash
Executable File
16 lines
322 B
Bash
Executable File
#!/bin/sh
|
||
|
||
# Usage
|
||
# sudo ./test.sh
|
||
# add -v for verbose mode (or type whatever you like !) :p
|
||
|
||
. test/tools/run.sh
|
||
|
||
run_test tools/build-container.sh "Successfully built"
|
||
run_test simple.sh "dn: dc=example,dc=com"
|
||
run_test tls.sh "dn: dc=example,dc=com"
|
||
run_test db.sh "dn: dc=otherdomain,dc=com"
|
||
|
||
. test/tools/end.sh
|
||
|