mirror of
https://github.com/php/php-src.git
synced 2026-04-25 17:08:14 +02:00
850feffac0
This gives us a way to compile and test a big endian architecture. Closes GH-5382.
7 lines
182 B
Bash
Executable File
7 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
echo '
|
|
<?php $conn_str .= " user=postgres"; ?>' >> "./ext/pgsql/tests/config.inc"
|
|
if [ -z "$ARM64" -o -z "$S390X"]; then
|
|
psql -c 'create database test;' -U postgres
|
|
fi
|