mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-15 17:32:56 +00:00
10 lines
345 B
Makefile
10 lines
345 B
Makefile
PG_CONFIG ?= pg_config
|
|
PG_REGRESS = $(shell dirname $$($(PG_CONFIG) --pgxs))/../../src/test/regress/pg_regress
|
|
REGRESS = pg_tiktoken
|
|
|
|
installcheck: regression-test
|
|
|
|
regression-test:
|
|
dropdb --if-exists contrib_regression
|
|
createdb contrib_regression
|
|
$(PG_REGRESS) --inputdir=. --outputdir=. --use-existing --dbname=contrib_regression $(REGRESS)
|