tests: create database with the utf-8 locale
[?]
Jan 21, 2021, 7:42 PM
GGVFNKMOIWVL7HU7S5EZ5CIKSQBMGMYA3QQQTNXZ5HLTUR3ZN42ACDependencies
- [2]
3HRBFWGKtests: change postgresql socket dir to /tmp - [3]
UQYHPQ6URun PostgreSQL during "make check" - [4]
7VQ4ALFYUpdate "make check" for the new queue runner
Change contents
- replacement in tests/set-up.pl at line 2
system("initdb -D postgres") == 0 or die;system("pg_ctl -D postgres -o \"-F -p 6433 -h '' -k /tmp \" -w start") == 0 or die;system("createdb -p 6433 hydra-test-suite") == 0 or die;system("initdb -D postgres --locale C.UTF-8 ") == 0 or die;system("pg_ctl -D postgres -o \"-F -p 6433 -h '' -k /tmp \" -w start") == 0 or die;system("createdb -l C.UTF-8 -p 6433 hydra-test-suite") == 0 or die;