You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by se...@apache.org on 2012/01/29 02:31:18 UTC

svn commit: r1237187 - /jmeter/trunk/build.xml

Author: sebb
Date: Sun Jan 29 01:31:17 2012
New Revision: 1237187

URL: http://svn.apache.org/viewvc?rev=1237187&view=rev
Log:
Don't try to run EOL conversion on test image files
i.e. in bin/testfiles/HTMLParserTestFile_2_files

Modified:
    jmeter/trunk/build.xml

Modified: jmeter/trunk/build.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/build.xml?rev=1237187&r1=1237186&r2=1237187&view=diff
==============================================================================
--- jmeter/trunk/build.xml (original)
+++ jmeter/trunk/build.xml Sun Jan 29 01:31:17 2012
@@ -1219,9 +1219,9 @@ run JMeter unless all the JMeter jars ar
     <include name="README"/>
     <include name="${src.dir}/**"/>
     <!-- Exclude binary types -->
-    <exclude name="${src.dir}/**/*.gif"/>
-    <exclude name="${src.dir}/**/*.jpg"/>
-    <exclude name="${src.dir}/**/*.png"/>
+    <exclude name="**/*.gif"/>
+    <exclude name="**/*.jpg"/>
+    <exclude name="**/*.png"/>
     <include name="${src.docs}/**"/>
   	<!-- Include some resources -->
   	<include name="${res.dir}/**"/>
@@ -1267,6 +1267,10 @@ run JMeter unless all the JMeter jars ar
     <include name="${dest.jar.jmeter}/testfiles/*.jtl"/>
     <!-- This one is generated with EOL=LF -->
     <include name="${dest.jar.jmeter}/testfiles/BatchTestLocal.xml"/>
+    <!-- Include the image files used in parsing / embedded download tests -->
+    <include name="${dest.jar.jmeter}/testfiles/**/*.gif"/>
+    <include name="${dest.jar.jmeter}/testfiles/**/*.jpg"/>
+    <include name="${dest.jar.jmeter}/testfiles/**/*.png"/>
   </patternset>
 
     <!-- Convert eol:native source files to appropriate format if required -->