The run part has different output across minor versions, the others not. Dropped test files identification statement as now the variable part is in small chunks.
		
			
				
	
	
		
			25 lines
		
	
	
		
			732 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			732 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # pg_repack: regress/Makefile
 | |
| #
 | |
| #  Portions Copyright (c) 2008-2012, NIPPON TELEGRAPH AND TELEPHONE CORPORATION
 | |
| #  Portions Copyright (c) 2011, Itagaki Takahiro
 | |
| #  Portions Copyright (c) 2012-2015, The Reorg Development Team
 | |
| #
 | |
| 
 | |
| PG_CONFIG ?= pg_config
 | |
| 
 | |
| # version as a number, e.g. 9.1.4 -> 901
 | |
| VERSION := $(shell $(PG_CONFIG) --version | sed 's/.* \([[:digit:].]\{1,\}\).*/\1/')
 | |
| INTVERSION := $(shell echo $$(($$(echo $(VERSION).0 | sed 's/\([[:digit:]]\{1,\}\)\.\([[:digit:]]\{1,\}\).*/\1*100+\2/'))))
 | |
| 
 | |
| 
 | |
| #
 | |
| # Test suite
 | |
| #
 | |
| 
 | |
| REGRESS := init-extension repack-setup repack-run after-schema repack-check nosuper tablespace issue3
 | |
| 
 | |
| USE_PGXS = 1	# use pgxs if not in contrib directory
 | |
| PGXS := $(shell $(PG_CONFIG) --pgxs)
 | |
| include $(PGXS)
 |