mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	Don't force SQL_ASCII/no-locale for installcheck in vcregress.pl
It's been this way for a very long time, but it appears to have been masking an issue that only manifests with different settings. Therefore, run the tests in the installation's default encoding/locale. Backpatch to all live branches.
This commit is contained in:
		@@ -150,9 +150,7 @@ sub installcheck_internal
 | 
				
			|||||||
		"--dlpath=.",
 | 
							"--dlpath=.",
 | 
				
			||||||
		"--bindir=../../../$Config/psql",
 | 
							"--bindir=../../../$Config/psql",
 | 
				
			||||||
		"--schedule=${schedule}_schedule",
 | 
							"--schedule=${schedule}_schedule",
 | 
				
			||||||
		"--max-concurrent-tests=20",
 | 
							"--max-concurrent-tests=20");
 | 
				
			||||||
		"--encoding=SQL_ASCII",
 | 
					 | 
				
			||||||
		"--no-locale");
 | 
					 | 
				
			||||||
	push(@args, $maxconn) if $maxconn;
 | 
						push(@args, $maxconn) if $maxconn;
 | 
				
			||||||
	push(@args, @EXTRA_REGRESS_OPTS);
 | 
						push(@args, @EXTRA_REGRESS_OPTS);
 | 
				
			||||||
	system(@args);
 | 
						system(@args);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user