diff options
| author | Andrew Dunstan | 2022-12-20 12:54:39 +0000 |
|---|---|---|
| committer | Andrew Dunstan | 2022-12-20 12:54:39 +0000 |
| commit | 8284cf5f746f84303eda34d213e89c8439a83a42 (patch) | |
| tree | c39a5fac541d731d4e187220f7d5cff0c5fed75b /src/test | |
| parent | 594f8d3776af4699c5c32443b9d6a486f44beabf (diff) | |
Add copyright notices to meson files
Discussion: https://postgr.es/m/222b43a5-2fb3-2c1b-9cd0-375d376c8246@dunslane.net
Diffstat (limited to 'src/test')
43 files changed, 86 insertions, 0 deletions
diff --git a/src/test/authentication/meson.build b/src/test/authentication/meson.build index cfc23fa213..35eff4a6db 100644 --- a/src/test/authentication/meson.build +++ b/src/test/authentication/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + tests += { 'name': 'authentication', 'sd': meson.current_source_dir(), diff --git a/src/test/icu/meson.build b/src/test/icu/meson.build index 5a4f53f37f..2a20b3119e 100644 --- a/src/test/icu/meson.build +++ b/src/test/icu/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + tests += { 'name': 'icu', 'sd': meson.current_source_dir(), diff --git a/src/test/isolation/meson.build b/src/test/isolation/meson.build index a999791876..e9ec154f71 100644 --- a/src/test/isolation/meson.build +++ b/src/test/isolation/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # pg_regress_c helpfully provided by regress/meson.build isolation_sources = pg_regress_c + files( diff --git a/src/test/kerberos/meson.build b/src/test/kerberos/meson.build index 7e2b6733fc..9569ab2836 100644 --- a/src/test/kerberos/meson.build +++ b/src/test/kerberos/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + tests += { 'name': 'kerberos', 'sd': meson.current_source_dir(), diff --git a/src/test/ldap/meson.build b/src/test/ldap/meson.build index 020f6e7f08..6088d63bae 100644 --- a/src/test/ldap/meson.build +++ b/src/test/ldap/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + tests += { 'name': 'ldap', 'sd': meson.current_source_dir(), diff --git a/src/test/meson.build b/src/test/meson.build index 241d9d48aa..f16e00a8a0 100644 --- a/src/test/meson.build +++ b/src/test/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + subdir('regress') subdir('isolation') diff --git a/src/test/modules/brin/meson.build b/src/test/modules/brin/meson.build index 58254d093a..4296cabb30 100644 --- a/src/test/modules/brin/meson.build +++ b/src/test/modules/brin/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + tests += { 'name': 'brin', 'sd': meson.current_source_dir(), diff --git a/src/test/modules/commit_ts/meson.build b/src/test/modules/commit_ts/meson.build index fa86e70e88..1a8393090f 100644 --- a/src/test/modules/commit_ts/meson.build +++ b/src/test/modules/commit_ts/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + tests += { 'name': 'commit_ts', 'sd': meson.current_source_dir(), diff --git a/src/test/modules/delay_execution/meson.build b/src/test/modules/delay_execution/meson.build index a0c3ab6afe..c28c4e3223 100644 --- a/src/test/modules/delay_execution/meson.build +++ b/src/test/modules/delay_execution/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ delay_execution_sources = files( diff --git a/src/test/modules/dummy_index_am/meson.build b/src/test/modules/dummy_index_am/meson.build index 4ce8249113..b909eb0aef 100644 --- a/src/test/modules/dummy_index_am/meson.build +++ b/src/test/modules/dummy_index_am/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ dummy_index_am_sources = files( diff --git a/src/test/modules/dummy_seclabel/meson.build b/src/test/modules/dummy_seclabel/meson.build index 81b626e496..9a2b3b9551 100644 --- a/src/test/modules/dummy_seclabel/meson.build +++ b/src/test/modules/dummy_seclabel/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ dummy_seclabel_sources = files( diff --git a/src/test/modules/libpq_pipeline/meson.build b/src/test/modules/libpq_pipeline/meson.build index de0e2d1562..528cb12112 100644 --- a/src/test/modules/libpq_pipeline/meson.build +++ b/src/test/modules/libpq_pipeline/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + libpq_pipeline_sources = files( 'libpq_pipeline.c', ) diff --git a/src/test/modules/meson.build b/src/test/modules/meson.build index 911a768a29..eefc0b2063 100644 --- a/src/test/modules/meson.build +++ b/src/test/modules/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + subdir('brin') subdir('commit_ts') subdir('delay_execution') diff --git a/src/test/modules/plsample/meson.build b/src/test/modules/plsample/meson.build index e1ea2c7a16..33ffc3b2e8 100644 --- a/src/test/modules/plsample/meson.build +++ b/src/test/modules/plsample/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ plsample_sources = files( diff --git a/src/test/modules/snapshot_too_old/meson.build b/src/test/modules/snapshot_too_old/meson.build index 5094b52949..4e7ec74c36 100644 --- a/src/test/modules/snapshot_too_old/meson.build +++ b/src/test/modules/snapshot_too_old/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + tests += { 'name': 'snapshot_too_old', 'sd': meson.current_source_dir(), diff --git a/src/test/modules/spgist_name_ops/meson.build b/src/test/modules/spgist_name_ops/meson.build index 445296fee0..49188796f2 100644 --- a/src/test/modules/spgist_name_ops/meson.build +++ b/src/test/modules/spgist_name_ops/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ spgist_name_ops_sources = files( diff --git a/src/test/modules/ssl_passphrase_callback/meson.build b/src/test/modules/ssl_passphrase_callback/meson.build index 1c9f009af3..820b15c58c 100644 --- a/src/test/modules/ssl_passphrase_callback/meson.build +++ b/src/test/modules/ssl_passphrase_callback/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + if not ssl.found() subdir_done() endif diff --git a/src/test/modules/test_bloomfilter/meson.build b/src/test/modules/test_bloomfilter/meson.build index 3cf6b05754..8135c1b2c2 100644 --- a/src/test/modules/test_bloomfilter/meson.build +++ b/src/test/modules/test_bloomfilter/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ test_bloomfilter_sources = files( diff --git a/src/test/modules/test_copy_callbacks/meson.build b/src/test/modules/test_copy_callbacks/meson.build index 43eca8e3d9..17f0c19334 100644 --- a/src/test/modules/test_copy_callbacks/meson.build +++ b/src/test/modules/test_copy_callbacks/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ test_copy_callbacks_sources = files( diff --git a/src/test/modules/test_custom_rmgrs/meson.build b/src/test/modules/test_custom_rmgrs/meson.build index 05ec06d6d5..0190442ed1 100644 --- a/src/test/modules/test_custom_rmgrs/meson.build +++ b/src/test/modules/test_custom_rmgrs/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ test_custom_rmgrs_sources = files( diff --git a/src/test/modules/test_ddl_deparse/meson.build b/src/test/modules/test_ddl_deparse/meson.build index 54d44f9b2b..3992f961a0 100644 --- a/src/test/modules/test_ddl_deparse/meson.build +++ b/src/test/modules/test_ddl_deparse/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ test_ddl_deparse_sources = files( diff --git a/src/test/modules/test_extensions/meson.build b/src/test/modules/test_extensions/meson.build index e95a9f2e7e..8cf18b7057 100644 --- a/src/test/modules/test_extensions/meson.build +++ b/src/test/modules/test_extensions/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ install_data( 'test_ext1--1.0.sql', diff --git a/src/test/modules/test_ginpostinglist/meson.build b/src/test/modules/test_ginpostinglist/meson.build index b3b49c5612..a0976a7d3c 100644 --- a/src/test/modules/test_ginpostinglist/meson.build +++ b/src/test/modules/test_ginpostinglist/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ test_ginpostinglist_sources = files( diff --git a/src/test/modules/test_integerset/meson.build b/src/test/modules/test_integerset/meson.build index 4bd75af4b5..017ff07029 100644 --- a/src/test/modules/test_integerset/meson.build +++ b/src/test/modules/test_integerset/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ test_integerset_sources = files( diff --git a/src/test/modules/test_lfind/meson.build b/src/test/modules/test_lfind/meson.build index c5405b8f87..32de276d15 100644 --- a/src/test/modules/test_lfind/meson.build +++ b/src/test/modules/test_lfind/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ test_lfind_sources = files( diff --git a/src/test/modules/test_misc/meson.build b/src/test/modules/test_misc/meson.build index cfc830ff39..b7478c3125 100644 --- a/src/test/modules/test_misc/meson.build +++ b/src/test/modules/test_misc/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + tests += { 'name': 'test_misc', 'sd': meson.current_source_dir(), diff --git a/src/test/modules/test_oat_hooks/meson.build b/src/test/modules/test_oat_hooks/meson.build index e9d09d92c3..719c8c46c9 100644 --- a/src/test/modules/test_oat_hooks/meson.build +++ b/src/test/modules/test_oat_hooks/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ test_oat_hooks_sources = files( diff --git a/src/test/modules/test_parser/meson.build b/src/test/modules/test_parser/meson.build index 1c17113347..03920fe49a 100644 --- a/src/test/modules/test_parser/meson.build +++ b/src/test/modules/test_parser/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ test_parser_sources = files( diff --git a/src/test/modules/test_pg_db_role_setting/meson.build b/src/test/modules/test_pg_db_role_setting/meson.build index 3a6410cca2..9a2b688049 100644 --- a/src/test/modules/test_pg_db_role_setting/meson.build +++ b/src/test/modules/test_pg_db_role_setting/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ test_pg_db_role_setting_sources = files( diff --git a/src/test/modules/test_pg_dump/meson.build b/src/test/modules/test_pg_dump/meson.build index 73f1fcf942..903cde1834 100644 --- a/src/test/modules/test_pg_dump/meson.build +++ b/src/test/modules/test_pg_dump/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ install_data( 'test_pg_dump.control', diff --git a/src/test/modules/test_predtest/meson.build b/src/test/modules/test_predtest/meson.build index 9a5be43c9c..485a49f497 100644 --- a/src/test/modules/test_predtest/meson.build +++ b/src/test/modules/test_predtest/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ test_predtest_sources = files( diff --git a/src/test/modules/test_rbtree/meson.build b/src/test/modules/test_rbtree/meson.build index f067e08d32..134f9c40c7 100644 --- a/src/test/modules/test_rbtree/meson.build +++ b/src/test/modules/test_rbtree/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ test_rbtree_sources = files( diff --git a/src/test/modules/test_regex/meson.build b/src/test/modules/test_regex/meson.build index cfb938d9f1..833bf994b3 100644 --- a/src/test/modules/test_regex/meson.build +++ b/src/test/modules/test_regex/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ test_regex_sources = files( diff --git a/src/test/modules/test_rls_hooks/meson.build b/src/test/modules/test_rls_hooks/meson.build index 3fb273b293..38f0fd2c80 100644 --- a/src/test/modules/test_rls_hooks/meson.build +++ b/src/test/modules/test_rls_hooks/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ test_rls_hooks_sources = files( diff --git a/src/test/modules/test_shm_mq/meson.build b/src/test/modules/test_shm_mq/meson.build index 16c8fdb57f..52d8dd389e 100644 --- a/src/test/modules/test_shm_mq/meson.build +++ b/src/test/modules/test_shm_mq/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ test_shm_mq_sources = files( diff --git a/src/test/modules/test_slru/meson.build b/src/test/modules/test_slru/meson.build index 74dacd11ac..29f7493945 100644 --- a/src/test/modules/test_slru/meson.build +++ b/src/test/modules/test_slru/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ test_slru_sources = files( diff --git a/src/test/modules/unsafe_tests/meson.build b/src/test/modules/unsafe_tests/meson.build index d69b0e7ce4..3a34a034fb 100644 --- a/src/test/modules/unsafe_tests/meson.build +++ b/src/test/modules/unsafe_tests/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + tests += { 'name': 'unsafe_tests', 'sd': meson.current_source_dir(), diff --git a/src/test/modules/worker_spi/meson.build b/src/test/modules/worker_spi/meson.build index 660d721eea..8df24ed6ad 100644 --- a/src/test/modules/worker_spi/meson.build +++ b/src/test/modules/worker_spi/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # FIXME: prevent install during main install, but not during test :/ test_worker_spi_sources = files( diff --git a/src/test/perl/meson.build b/src/test/perl/meson.build index 901bae7a56..fbbd9aa9fb 100644 --- a/src/test/perl/meson.build +++ b/src/test/perl/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # could use install_data's preserve_path option in >=0.64.0 install_data( diff --git a/src/test/recovery/meson.build b/src/test/recovery/meson.build index b0e398363f..b8c3c104ae 100644 --- a/src/test/recovery/meson.build +++ b/src/test/recovery/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + tests += { 'name': 'recovery', 'sd': meson.current_source_dir(), diff --git a/src/test/regress/meson.build b/src/test/regress/meson.build index fbca624948..1096158fab 100644 --- a/src/test/regress/meson.build +++ b/src/test/regress/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + # also used by isolationtester and ecpg tests pg_regress_c = files('pg_regress.c') pg_regress_inc = include_directories('.') diff --git a/src/test/ssl/meson.build b/src/test/ssl/meson.build index 1e02bf9ed0..72d8a79050 100644 --- a/src/test/ssl/meson.build +++ b/src/test/ssl/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + tests += { 'name': 'ssl', 'sd': meson.current_source_dir(), diff --git a/src/test/subscription/meson.build b/src/test/subscription/meson.build index 85d1dd9295..c28121f26e 100644 --- a/src/test/subscription/meson.build +++ b/src/test/subscription/meson.build @@ -1,3 +1,5 @@ +# Copyright (c) 2022, PostgreSQL Global Development Group + tests += { 'name': 'subscription', 'sd': meson.current_source_dir(), |
