Files
datadog
doc
src
tests
jobs
Makefile.am
Setup.pm
api-test.nix
api-test.pl
evaluation-tests.pl
s3-backup-test.config
s3-backup-test.pl
set-up.pl
tear-down.pl
.gitignore
COPYING
INSTALL
Makefile.am
README.md
bootstrap
configure.ac
hydra-module.nix
release.nix
shell.nix
version
hydra/tests/set-up.pl
2015-06-25 16:47:39 +02:00

6 lines
220 B
Perl

use strict;
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;