diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2018-03-15 22:36:19 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2018-03-15 22:36:19 -0400 |
commit | 84a3611cccfa41f29d14a5b1ab4bcc58fba9b25b (patch) | |
tree | 80485af356ed40cea3ae6b4d2dc0732fed666abd /src | |
parent | 2cf8c7aa48559699f0607f5cb77b661156ad9750 (diff) | |
download | postgresql-84a3611cccfa41f29d14a5b1ab4bcc58fba9b25b.tar.gz postgresql-84a3611cccfa41f29d14a5b1ab4bcc58fba9b25b.zip |
Fix msvc/ecpg_regression.proj for recent ECPG test additions.
Commit 3b7ab4380 added some tests that require ecpg to be given the
new "-C ORACLE" switch. Teach the MSVC build infrastructure about
that.
Michael Paquier
Discussion: https://postgr.es/m/8299.1521154647@sss.pgh.pa.us
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/msvc/ecpg_regression.proj | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tools/msvc/ecpg_regression.proj b/src/tools/msvc/ecpg_regression.proj index 745aa19e1b7..9fa4a690216 100644 --- a/src/tools/msvc/ecpg_regression.proj +++ b/src/tools/msvc/ecpg_regression.proj @@ -33,6 +33,9 @@ <CreateProperty Value="-C INFORMIX -r no_indicator" Condition="'%(Pgc.FileName)'=='rnull'"> <Output TaskParameter="Value" PropertyName="ECPGPARAM" /> </CreateProperty> + <CreateProperty Value="-C ORACLE" Condition="'%(Pgc.RelativeDir)'=='$(TESTDIR)\compat_oracle\'"> + <Output TaskParameter="Value" PropertyName="ECPGPARAM" /> + </CreateProperty> <CreateProperty Value="-c" Condition="'%(Pgc.FileName)'=='array_of_struct'"> <Output TaskParameter="Value" PropertyName="ECPGPARAM" /> </CreateProperty> |