Bug 295393 - create Hudson build to run JUnit tests on one platform
diff --git a/bundles/org.eclipse.build.tools/scripts/test.xml b/bundles/org.eclipse.build.tools/scripts/test.xml
index 29605eb..ac357a0 100644
--- a/bundles/org.eclipse.build.tools/scripts/test.xml
+++ b/bundles/org.eclipse.build.tools/scripts/test.xml
@@ -148,7 +148,11 @@
 		<property name="testResults" value="${testDir}/testresults" />
 
 		<!--set up testing directory-->
-		<unzip src="${testFramework}" dest="${testDir}" overwrite="false" />
+		<unzip src="${testFramework}" dest="${testDir}" overwrite="false">
+			<patternset>
+				<exclude name="**/equinoxp2tests.properties" />
+			</patternset>
+		</unzip>
 
 		<echo message="executionDir ${executionDir} testExecutable ${testExecutable} testScript ${testScript} args ${args}" />
 
@@ -159,7 +163,7 @@
 				<os family="windows" />
 			</and>
 		</condition>
-		<property name="executionArguments" value="${testScript} ${args}"/>
+		<property name="executionArguments" value="${testScript} ${args}" />
 
 		<!--run the tests-->
 		<exec dir="${executionDir}" executable="${testExecutable}">