Skip to content

Commit a908f59

Browse files
author
Commitfest Bot
committed
[CF 5978] v8 - Add tests for Bitmapset
This branch was automatically generated by a robot using patches from an email thread registered at: https://commitfest.postgresql.org/patch/5978 The branch will be overwritten each time a new patch version is posted to the thread, and also periodically to check for bitrot caused by changes on the master branch. Patch(es): https://www.postgresql.org/message-id/[email protected] Author(s): Greg Burd
2 parents 18cdf59 + d116e8b commit a908f59

File tree

10 files changed

+2143
-0
lines changed

10 files changed

+2143
-0
lines changed

src/test/modules/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ SUBDIRS = \
1616
spgist_name_ops \
1717
test_aio \
1818
test_binaryheap \
19+
test_bitmapset \
1920
test_bloomfilter \
2021
test_copy_callbacks \
2122
test_custom_rmgrs \

src/test/modules/meson.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ subdir('spgist_name_ops')
1515
subdir('ssl_passphrase_callback')
1616
subdir('test_aio')
1717
subdir('test_binaryheap')
18+
subdir('test_bitmapset')
1819
subdir('test_bloomfilter')
1920
subdir('test_copy_callbacks')
2021
subdir('test_custom_rmgrs')
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Generated subdirectories
2+
/log/
3+
/results/
4+
/tmp_check/
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# src/test/modules/test_bitmapset/Makefile
2+
3+
MODULE_big = test_bitmapset
4+
OBJS = \
5+
$(WIN32RES) \
6+
test_bitmapset.o
7+
PGFILEDESC = "test_bitmapset - test code for src/include/nodes/bitmapset.h"
8+
9+
EXTENSION = test_bitmapset
10+
DATA = test_bitmapset--1.0.sql
11+
12+
REGRESS = test_bitmapset
13+
14+
ifdef USE_PGXS
15+
PG_CONFIG = pg_config
16+
PGXS := $(shell $(PG_CONFIG) --pgxs)
17+
include $(PGXS)
18+
else
19+
subdir = src/test/modules/test_bitmapset
20+
top_builddir = ../../../..
21+
include $(top_builddir)/src/Makefile.global
22+
include $(top_srcdir)/contrib/contrib-global.mk
23+
endif

0 commit comments

Comments
 (0)