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

ret=0

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

exit $((ret>0))