meson: Add initial version of meson based build system
Autoconf is showing its age, fewer and fewer contributors know how to wrangle
it. Recursive make has a lot of hard to resolve dependency issues and slow
incremental rebuilds. Our home-grown MSVC build system is hard to maintain for
developers not using Windows and runs tests serially. While these and other
issues could individually be addressed with incremental improvements, together
they seem best addressed by moving to a more modern build system.
After evaluating different build system choices, we chose to use meson, to a
good degree based on the adoption by other open source projects.
We decided that it's more realistic to commit a relatively early version of
the new build system and mature it in tree.
This commit adds an initial version of a meson based build system. It supports
building postgres on at least AIX, FreeBSD, Linux, macOS, NetBSD, OpenBSD,
Solaris and Windows (however only gcc is supported on aix, solaris). For
Windows/MSVC postgres can now be built with ninja (faster, particularly for
incremental builds) and msbuild (supporting the visual studio GUI, but
building slower).
Several aspects (e.g. Windows rc file generation, PGXS compatibility, LLVM
bitcode generation, documentation adjustments) are done in subsequent commits
requiring further review. Other aspects (e.g. not installing test-only
extensions) are not yet addressed.
When building on Windows with msbuild, builds are slower when using a visual
studio version older than 2019, because those versions do not support
MultiToolTask, required by meson for intra-target parallelism.
The plan is to remove the MSVC specific build system in src/tools/msvc soon
after reaching feature parity. However, we're not planning to remove the
autoconf/make build system in the near future. Likely we're going to keep at
least the parts required for PGXS to keep working around until all supported
versions build with meson.
Some initial help for postgres developers is at
https://wiki.postgresql.org/wiki/Meson
With contributions from Thomas Munro, John Naylor, Stone Tickle and others.
Author: Andres Freund <andres@anarazel.de>
Author: Nazir Bilal Yavuz <byavuz81@gmail.com>
Author: Peter Eisentraut <peter@eisentraut.org>
Reviewed-By: Peter Eisentraut <peter.eisentraut@enterprisedb.com>
Discussion: https://postgr.es/m/20211012083721.hvixq4pnh2pixr3j@alap3.anarazel.de
2022-09-22 00:53:12 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
|
import shutil
|
|
|
|
|
import subprocess
|
|
|
|
|
import os
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
|
|
|
|
|
|
parser.add_argument('--srcdir', help='source directory of test', type=str)
|
|
|
|
|
parser.add_argument('--basedir', help='base directory of test', type=str)
|
|
|
|
|
parser.add_argument('--testgroup', help='test group', type=str)
|
|
|
|
|
parser.add_argument('--testname', help='test name', type=str)
|
2025-11-21 17:08:46 -05:00
|
|
|
parser.add_argument('--schedule', help='schedule tests', nargs='*')
|
|
|
|
|
parser.add_argument('--tests', help='tests', nargs='*')
|
2023-11-16 02:06:12 -05:00
|
|
|
parser.add_argument('--skip', help='skip test (with reason)', type=str)
|
2024-11-04 07:09:25 -05:00
|
|
|
parser.add_argument('--pg-test-extra', help='extra tests', type=str)
|
meson: Add initial version of meson based build system
Autoconf is showing its age, fewer and fewer contributors know how to wrangle
it. Recursive make has a lot of hard to resolve dependency issues and slow
incremental rebuilds. Our home-grown MSVC build system is hard to maintain for
developers not using Windows and runs tests serially. While these and other
issues could individually be addressed with incremental improvements, together
they seem best addressed by moving to a more modern build system.
After evaluating different build system choices, we chose to use meson, to a
good degree based on the adoption by other open source projects.
We decided that it's more realistic to commit a relatively early version of
the new build system and mature it in tree.
This commit adds an initial version of a meson based build system. It supports
building postgres on at least AIX, FreeBSD, Linux, macOS, NetBSD, OpenBSD,
Solaris and Windows (however only gcc is supported on aix, solaris). For
Windows/MSVC postgres can now be built with ninja (faster, particularly for
incremental builds) and msbuild (supporting the visual studio GUI, but
building slower).
Several aspects (e.g. Windows rc file generation, PGXS compatibility, LLVM
bitcode generation, documentation adjustments) are done in subsequent commits
requiring further review. Other aspects (e.g. not installing test-only
extensions) are not yet addressed.
When building on Windows with msbuild, builds are slower when using a visual
studio version older than 2019, because those versions do not support
MultiToolTask, required by meson for intra-target parallelism.
The plan is to remove the MSVC specific build system in src/tools/msvc soon
after reaching feature parity. However, we're not planning to remove the
autoconf/make build system in the near future. Likely we're going to keep at
least the parts required for PGXS to keep working around until all supported
versions build with meson.
Some initial help for postgres developers is at
https://wiki.postgresql.org/wiki/Meson
With contributions from Thomas Munro, John Naylor, Stone Tickle and others.
Author: Andres Freund <andres@anarazel.de>
Author: Nazir Bilal Yavuz <byavuz81@gmail.com>
Author: Peter Eisentraut <peter@eisentraut.org>
Reviewed-By: Peter Eisentraut <peter.eisentraut@enterprisedb.com>
Discussion: https://postgr.es/m/20211012083721.hvixq4pnh2pixr3j@alap3.anarazel.de
2022-09-22 00:53:12 -04:00
|
|
|
parser.add_argument('test_command', nargs='*')
|
|
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
|
|
testdir = '{}/testrun/{}/{}'.format(
|
|
|
|
|
args.basedir, args.testgroup, args.testname)
|
|
|
|
|
|
|
|
|
|
print('# executing test in {} group {} test {}'.format(
|
|
|
|
|
testdir, args.testgroup, args.testname))
|
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
|
2023-11-16 02:06:12 -05:00
|
|
|
if args.skip is not None:
|
|
|
|
|
print('1..0 # Skipped: ' + args.skip)
|
|
|
|
|
sys.exit(0)
|
|
|
|
|
|
meson: Add initial version of meson based build system
Autoconf is showing its age, fewer and fewer contributors know how to wrangle
it. Recursive make has a lot of hard to resolve dependency issues and slow
incremental rebuilds. Our home-grown MSVC build system is hard to maintain for
developers not using Windows and runs tests serially. While these and other
issues could individually be addressed with incremental improvements, together
they seem best addressed by moving to a more modern build system.
After evaluating different build system choices, we chose to use meson, to a
good degree based on the adoption by other open source projects.
We decided that it's more realistic to commit a relatively early version of
the new build system and mature it in tree.
This commit adds an initial version of a meson based build system. It supports
building postgres on at least AIX, FreeBSD, Linux, macOS, NetBSD, OpenBSD,
Solaris and Windows (however only gcc is supported on aix, solaris). For
Windows/MSVC postgres can now be built with ninja (faster, particularly for
incremental builds) and msbuild (supporting the visual studio GUI, but
building slower).
Several aspects (e.g. Windows rc file generation, PGXS compatibility, LLVM
bitcode generation, documentation adjustments) are done in subsequent commits
requiring further review. Other aspects (e.g. not installing test-only
extensions) are not yet addressed.
When building on Windows with msbuild, builds are slower when using a visual
studio version older than 2019, because those versions do not support
MultiToolTask, required by meson for intra-target parallelism.
The plan is to remove the MSVC specific build system in src/tools/msvc soon
after reaching feature parity. However, we're not planning to remove the
autoconf/make build system in the near future. Likely we're going to keep at
least the parts required for PGXS to keep working around until all supported
versions build with meson.
Some initial help for postgres developers is at
https://wiki.postgresql.org/wiki/Meson
With contributions from Thomas Munro, John Naylor, Stone Tickle and others.
Author: Andres Freund <andres@anarazel.de>
Author: Nazir Bilal Yavuz <byavuz81@gmail.com>
Author: Peter Eisentraut <peter@eisentraut.org>
Reviewed-By: Peter Eisentraut <peter.eisentraut@enterprisedb.com>
Discussion: https://postgr.es/m/20211012083721.hvixq4pnh2pixr3j@alap3.anarazel.de
2022-09-22 00:53:12 -04:00
|
|
|
if os.path.exists(testdir) and os.path.isdir(testdir):
|
|
|
|
|
shutil.rmtree(testdir)
|
|
|
|
|
os.makedirs(testdir)
|
|
|
|
|
|
|
|
|
|
os.chdir(args.srcdir)
|
|
|
|
|
|
|
|
|
|
# mark test as having started
|
|
|
|
|
open(os.path.join(testdir, 'test.start'), 'x')
|
|
|
|
|
|
|
|
|
|
env_dict = {**os.environ,
|
|
|
|
|
'TESTDATADIR': os.path.join(testdir, 'data'),
|
|
|
|
|
'TESTLOGDIR': os.path.join(testdir, 'log')}
|
|
|
|
|
|
2024-11-04 07:09:25 -05:00
|
|
|
|
2025-04-11 16:17:12 -04:00
|
|
|
# The configuration time value of PG_TEST_EXTRA is supplied via argument
|
2024-11-04 07:09:25 -05:00
|
|
|
# --pg-test-extra. But it can be overridden by environment variable
|
|
|
|
|
# PG_TEST_EXTRA at the time of running a test. Hence use value from arguments
|
|
|
|
|
# only if PG_TEST_EXTRA is not set in the test environment, which already
|
|
|
|
|
# contains all the environment variables at the time of running the test.
|
|
|
|
|
if "PG_TEST_EXTRA" not in env_dict and args.pg_test_extra:
|
|
|
|
|
env_dict["PG_TEST_EXTRA"] = args.pg_test_extra
|
|
|
|
|
|
2025-11-21 17:08:46 -05:00
|
|
|
if "TESTS" in env_dict:
|
|
|
|
|
args.test_command += env_dict["TESTS"].split()
|
|
|
|
|
else:
|
|
|
|
|
if args.schedule:
|
|
|
|
|
args.test_command += ['--schedule', ' '.join(args.schedule)]
|
|
|
|
|
if args.tests:
|
|
|
|
|
args.test_command.extend(args.tests)
|
|
|
|
|
|
2024-06-27 22:21:04 -04:00
|
|
|
sp = subprocess.Popen(args.test_command, env=env_dict, stdout=subprocess.PIPE)
|
|
|
|
|
# Meson categorizes a passing TODO test point as bad
|
|
|
|
|
# (https://github.com/mesonbuild/meson/issues/13183). Remove the TODO
|
|
|
|
|
# directive, so Meson computes the file result like Perl does. This could
|
|
|
|
|
# have the side effect of delaying stdout lines relative to stderr. That
|
|
|
|
|
# doesn't affect the log file, and the TAP protocol uses stdout only.
|
|
|
|
|
for line in sp.stdout:
|
|
|
|
|
if line.startswith(b'ok '):
|
|
|
|
|
line = line.replace(b' # TODO ', b' # testwrap-overridden-TODO ', 1)
|
|
|
|
|
sys.stdout.buffer.write(line)
|
2025-03-19 09:04:09 -04:00
|
|
|
sys.stdout.flush()
|
2024-06-27 22:21:04 -04:00
|
|
|
returncode = sp.wait()
|
|
|
|
|
|
|
|
|
|
if returncode == 0:
|
meson: Add initial version of meson based build system
Autoconf is showing its age, fewer and fewer contributors know how to wrangle
it. Recursive make has a lot of hard to resolve dependency issues and slow
incremental rebuilds. Our home-grown MSVC build system is hard to maintain for
developers not using Windows and runs tests serially. While these and other
issues could individually be addressed with incremental improvements, together
they seem best addressed by moving to a more modern build system.
After evaluating different build system choices, we chose to use meson, to a
good degree based on the adoption by other open source projects.
We decided that it's more realistic to commit a relatively early version of
the new build system and mature it in tree.
This commit adds an initial version of a meson based build system. It supports
building postgres on at least AIX, FreeBSD, Linux, macOS, NetBSD, OpenBSD,
Solaris and Windows (however only gcc is supported on aix, solaris). For
Windows/MSVC postgres can now be built with ninja (faster, particularly for
incremental builds) and msbuild (supporting the visual studio GUI, but
building slower).
Several aspects (e.g. Windows rc file generation, PGXS compatibility, LLVM
bitcode generation, documentation adjustments) are done in subsequent commits
requiring further review. Other aspects (e.g. not installing test-only
extensions) are not yet addressed.
When building on Windows with msbuild, builds are slower when using a visual
studio version older than 2019, because those versions do not support
MultiToolTask, required by meson for intra-target parallelism.
The plan is to remove the MSVC specific build system in src/tools/msvc soon
after reaching feature parity. However, we're not planning to remove the
autoconf/make build system in the near future. Likely we're going to keep at
least the parts required for PGXS to keep working around until all supported
versions build with meson.
Some initial help for postgres developers is at
https://wiki.postgresql.org/wiki/Meson
With contributions from Thomas Munro, John Naylor, Stone Tickle and others.
Author: Andres Freund <andres@anarazel.de>
Author: Nazir Bilal Yavuz <byavuz81@gmail.com>
Author: Peter Eisentraut <peter@eisentraut.org>
Reviewed-By: Peter Eisentraut <peter.eisentraut@enterprisedb.com>
Discussion: https://postgr.es/m/20211012083721.hvixq4pnh2pixr3j@alap3.anarazel.de
2022-09-22 00:53:12 -04:00
|
|
|
print('# test succeeded')
|
|
|
|
|
open(os.path.join(testdir, 'test.success'), 'x')
|
|
|
|
|
else:
|
|
|
|
|
print('# test failed')
|
|
|
|
|
open(os.path.join(testdir, 'test.fail'), 'x')
|
2024-06-27 22:21:04 -04:00
|
|
|
sys.exit(returncode)
|