blob: bec24e1200ba783da4efe6ac2569de0b5ced85b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/bash
if [ -n "$PBUILDER_CHECKOUT" ]; then
. "$PBUILDER_CHECKOUT/testlib.sh"
. "$PBUILDER_CHECKOUT/pbuilder-modules"
else
# these currently don't need to be exported
PBUILDER_TEST_ROOT="${PBUILDER_ROOT:-}"
PBUILDER_TEST_PKGLIBDIR="${PBUILDER_PKGLIBDIR:-$PBUILDER_ROOT/usr/lib/pbuilder}"
. "$PBUILDER_TEST_PKGLIBDIR/testlib.sh"
. "$PBUILDER_TEST_PKGLIBDIR/pbuilder-modules"
fi
function test_information() {
log "I: test"
log "W: warning"
log "E: error"
}
expect_output "I: test
W: warning
E: error" test_information
testlib_summary
|