Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 103614 | Differences between
and this patch

Collapse All | Expand All

(-)scripts/testScripts/test.xml (-1 / +3 lines)
Lines 81-87 Link Here
81
	</target>
81
	</target>
82
82
83
	<target name="runtests-normal" unless="runAsPerfApp">
83
	<target name="runtests-normal" unless="runAsPerfApp">
84
		<ant antfile="${eclipse-home}/plugins/${testPlugin}/test.xml" dir="${eclipse-home}"/>
84
		<ant antfile="${eclipse-home}/plugins/${testPlugin}/test.xml" dir="${eclipse-home}">
85
			<property name="library-file" value="${testDir}/junit-tests.xml"/>
86
		</ant>
85
		<copy file="${eclipse-home}/${report}.xml" tofile="${results}/xml/${report}_${platform}.xml" failonerror="false" />
87
		<copy file="${eclipse-home}/${report}.xml" tofile="${results}/xml/${report}_${platform}.xml" failonerror="false" />
86
		<antcall target="genHtml" />
88
		<antcall target="genHtml" />
87
	</target>
89
	</target>
(-)scripts/testScripts/junit-tests.xml (+21 lines)
Added Link Here
1
<?xml version="1.0"?>
2
<project name="API tests"  basedir="." >
3
4
  <property name="library-xml-file" value="${basedir}/plugins/org.eclipse.test_3.1.0/library.xml"/>
5
  <import file="${library-xml-file}"/>
6
7
  <target name="core-test">
8
    <antcall target="eclipse-test">
9
      <param name="application" value="org.eclipse.test.coretestapplication"/>
10
      <param name="extraVMargs" value="${extraVMargs} -Dwtp.quiet=true"/>
11
    </antcall>
12
  </target>
13
14
  <target name="ui-test">
15
    <antcall target="eclipse-test">
16
      <param name="application" value="org.eclipse.test.uitestapplication"/>
17
      <param name="extraVMargs" value="${extraVMargs} -Dwtp.quiet=true"/>
18
    </antcall>
19
  </target>
20
21
</project>

Return to bug 103614