Run PostgreSQL during "make check"
This commit is contained in:
@ -1,3 +1,5 @@
|
||||
use strict;
|
||||
system("createdb hydra-test-suite") == 0 or die;
|
||||
system("initdb -D postgres") == 0 or die;
|
||||
system("pg_ctl -D postgres -o \"-F -p 6433 -h ''\" -w start") == 0 or die;
|
||||
system("createdb -p 6433 hydra-test-suite") == 0 or die;
|
||||
system("hydra-init") == 0 or die;
|
||||
|
Reference in New Issue
Block a user