Skip to content
Snippets Groups Projects
Commit a0249850 authored by U-BASIS\zhaohui's avatar U-BASIS\zhaohui Committed by Richard Cordovano
Browse files

3189: add libraries to the path env for junit test

parent 45adae14
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="windows-1252"?> <?xml version="1.0" encoding="windows-1252"?>
<project name="TSKTestTargets"> <project name="TSKTestTargets">
<property name="dlls" value="../../win32/x64/Release_PostgreSQL"/>
<property environment="env"/>
<target name="test" <target name="test"
description="Performs regression tests." description="Performs regression tests."
depends="compile-test, copyTSKLibs"> depends="compile-test, copyTSKLibs">
<junit fork="on" haltonfailure="yes" dir="."> <junit fork="on" haltonfailure="yes" dir=".">
<env key="path" value="${env.Path}:${dlls}"/>
<sysproperty key="rslt" value="${test-results}"/> <sysproperty key="rslt" value="${test-results}"/>
<sysproperty key="gold" value="${test-standards}"/> <sysproperty key="gold" value="${test-standards}"/>
<sysproperty key="inpt" value="${test-input}"/> <sysproperty key="inpt" value="${test-input}"/>
......
<?xml version="1.0" encoding="windows-1252"?> <?xml version="1.0" encoding="windows-1252"?>
<project name="TSKTestTargets"> <project name="TSKTestTargets">
<property name="dlls" value="../../win32/Release"/> <property name="dlls" value="../../win32/x64/Release_PostgreSQL"/>
<property environment="env"/>
<target name="test" <target name="test"
description="Runs the regression tests." description="Runs the regression tests."
depends="compile-test" > depends="compile-test" >
<junit fork="on" haltonfailure="yes" dir="."> <junit fork="on" haltonfailure="yes" dir=".">
<sysproperty key="java.library.path" value="${dlls}"/> <env key="path" value="${env.Path};${dlls}"/>
<sysproperty key="rslt" value="${test-results}"/> <sysproperty key="rslt" value="${test-results}"/>
<sysproperty key="gold" value="${test-standards}"/> <sysproperty key="gold" value="${test-standards}"/>
<sysproperty key="inpt" value="${test-input}"/> <sysproperty key="inpt" value="${test-input}"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment