mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
From: t-ishii@sra.co.jp
As Bruce mentioned, this is due to the conflict among changes we made. Included patches should fix the problem(I changed all MB to MULTIBYTE). Please let me know if you have further problem. P.S. I did not include pathces to configure and gram.c to save the file size(configure.in and gram.y modified).
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
#! /bin/sh
|
||||
# $Header: /cvsroot/pgsql/src/test/mb/mbregress.sh,v 1.1 1998/07/24 03:32:40 scrappy Exp $
|
||||
# $Header: /cvsroot/pgsql/src/test/mb/mbregress.sh,v 1.2 1998/07/26 04:31:38 scrappy Exp $
|
||||
|
||||
if echo '\c' | grep -s c >/dev/null 2>&1
|
||||
then
|
||||
@ -10,6 +10,10 @@ else
|
||||
ECHO_C='\c'
|
||||
fi
|
||||
|
||||
if [ ! -d results ];then
|
||||
mkdir results
|
||||
fi
|
||||
|
||||
PSQL="psql -n -e -q"
|
||||
tests="euc_jp sjis euc_kr euc_cn unicode mule_internal"
|
||||
unset PGCLIENTENCODING
|
||||
|
@ -7,7 +7,7 @@
|
||||
#
|
||||
#
|
||||
# IDENTIFICATION
|
||||
# $Header: /cvsroot/pgsql/src/test/regress/GNUmakefile,v 1.15 1998/03/15 07:39:01 scrappy Exp $
|
||||
# $Header: /cvsroot/pgsql/src/test/regress/GNUmakefile,v 1.16 1998/07/26 04:31:41 scrappy Exp $
|
||||
#
|
||||
#-------------------------------------------------------------------------
|
||||
|
||||
@ -50,7 +50,7 @@ all: $(INFILES)
|
||||
# run the test
|
||||
#
|
||||
runtest: $(INFILES)
|
||||
MB=$(MB);export MB; \
|
||||
MULTIBYTE=$(MULTIBYTE);export MULTIBYTE; \
|
||||
$(SHELL) ./regress.sh 2>&1 | tee regress.out
|
||||
@echo "ACTUAL RESULTS OF REGRESSION TEST ARE NOW IN FILE regress.out"
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#!/bin/sh
|
||||
# $Header: /cvsroot/pgsql/src/test/regress/Attic/regress.sh,v 1.19 1998/04/27 17:10:17 scrappy Exp $
|
||||
# $Header: /cvsroot/pgsql/src/test/regress/Attic/regress.sh,v 1.20 1998/07/26 04:31:41 scrappy Exp $
|
||||
#
|
||||
if echo '\c' | grep -s c >/dev/null 2>&1
|
||||
then
|
||||
@ -42,8 +42,8 @@ fi
|
||||
|
||||
echo "=============== running regression queries... ================="
|
||||
echo "" > regression.diffs
|
||||
if [ a$MB != a ];then
|
||||
mbtests=`echo $MB|tr "[A-Z]" "[a-z]"`
|
||||
if [ -n "$MULTIBYTE" ];then
|
||||
mbtests=`echo $MULTIBYTE|tr "[A-Z]" "[a-z]"`
|
||||
else
|
||||
mbtests=""
|
||||
fi
|
||||
|
Reference in New Issue
Block a user