Reduced the amount of output from test scripts.
[gnucomo.git] / test / t0002a.sh
1 #!/bin/sh
2
3 #
4 #  Create an object 'kithira.andromeda.nl' in the database and
5 #  parse a piece of a syslog file.
6 #  This tests normal operation in which gcm_input reads a syslog file
7 #  directly.
8
9 cd ..
10
11 if psql gnucomo_test -f src/database/create.sql -q >/dev/null
12 then
13    psql gnucomo_test -q -c "insert into object (objectname) values ('kithira.andromeda.nl')"
14    psql gnucomo_test -c "select * from object"
15    src/gcm_input/gcm_input -c gnucomo_test -h kithira.andromeda.nl -d 'sep 5 2002 20:30:45' <test/messages
16    psql gnucomo_test -c "select * from log"
17    psql gnucomo_test -f src/database/destroy.sql -q
18    exit $result
19 else
20    echo Can not create test database
21    exit 1
22 fi