summaryrefslogtreecommitdiffstats
path: root/fb-test
blob: 3aaf63940c3164277b0c36b5bd18300593027964 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

ret=0

echo "Testing MYSQL"
~/git/filebin/run-tests.sh "$@"
ret+=$?

echo "Testing POSTGRES"
TESTSUITE_DB=postgres ~/git/filebin/run-tests.sh "$@"
ret+=$?

exit $((ret>0))