hydra/tests/set-up.pl

6 lines
220 B
Perl
Raw Normal View History

use strict;
2015-06-25 13:51:44 +00:00
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;