mirror of
https://github.com/php/php-src.git
synced 2024-11-26 19:33:55 +08:00
cf3d3cd86f
Note that the PostgreSQL tests still don't work on some architectures. Closes GH-5607.
9 lines
236 B
Bash
Executable File
9 lines
236 B
Bash
Executable File
#!/bin/sh
|
|
set -ev
|
|
|
|
# PostgreSQL tests currently don't work on some architectures.
|
|
if test -z "${ARM64}${S390X}"; then
|
|
psql -c "ALTER USER postgres PASSWORD 'postgres';" -U postgres
|
|
psql -c "CREATE DATABASE test;" -U postgres
|
|
fi
|