Author: fschumacher
Date: Mon Oct 12 14:56:30 2015
New Revision: 1708135
URL: http://svn.apache.org/viewvc?rev=1708135&view=rev
Log:
Add a directory for resources used by tests/unit cases to classpath in the
_test target and the eclipse class path.
Added:
jmeter/trunk/test/resources/
Modified:
jmeter/trunk/build.xml
jmeter/trunk/eclipse.classpath
Modified: jmeter/trunk/build.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/build.xml?rev=1708135&r1=1708134&r2=1708135&view=diff
==============================================================================
--- jmeter/trunk/build.xml (original)
+++ jmeter/trunk/build.xml Mon Oct 12 14:56:30 2015
@@ -263,6 +263,7 @@
<property name="build.mongodb" value="build/protocol/mongodb"/>
<property name="build.test" value="build/test"/>
<property name="build.res" value="build/res"/>
+ <property name="build.test-res" value="test/resources"/>
<!-- Path prefix to allow Anakia to find stylesheets if running under Eclipse -->
<!--
@@ -2607,6 +2608,7 @@ run JMeter unless all the JMeter jars ar
<fileset dir="${dest.jar.jmeter}" includes="ApacheJMeter.jar"/>
<fileset dir="${dest.jar}" includes="*.jar"/>
<pathelement location="${build.test}"/>
+ <pathelement location="${build.test-res}"/>
<path refid="classpath"/>
</classpath>
<jvmarg value="-server"/>
Modified: jmeter/trunk/eclipse.classpath
URL: http://svn.apache.org/viewvc/jmeter/trunk/eclipse.classpath?rev=1708135&r1=1708134&r2=1708135&view=diff
==============================================================================
--- jmeter/trunk/eclipse.classpath (original)
+++ jmeter/trunk/eclipse.classpath Mon Oct 12 14:56:30 2015
@@ -98,6 +98,7 @@
<classpathentry kind="lib" path="lib/xpp3_min-1.1.4c.jar"/>
<classpathentry kind="lib" path="lib/xstream-1.4.8.jar"/>
<!-- Needed for build and test -->
+ <classpathentry kind="src" path="test/resources" output="build/test" excluding="**/*.java"/>
<classpathentry kind="lib" path="lib/api/bcmail-jdk15on-1.49.jar"/>
<classpathentry kind="lib" path="lib/api/bcprov-jdk15on-1.49.jar"/>
<classpathentry kind="lib" path="lib/api/bcpkix-jdk15on-1.49.jar"/>
|