Skip to content

Commit

Permalink
Add save participant test project to Ant-based build
Browse files Browse the repository at this point in the history
This adds the test bundle
org.eclipse.core.tests.resource.saveparticipant to the Ant-based build.
* Adds the bundles to the SDK test feature
* Adds according targets to the main test.xml
* Adds the produced log files to the testManifest.xml
  • Loading branch information
HeikoKlare committed Jul 4, 2024
1 parent 3aa7b7a commit b34ed4f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -559,6 +559,9 @@
<logFile
name="org.eclipse.core.tests.resources"
type="test" />
<logFile
name="org.eclipse.core.tests.resources.saveparticipant"
type="test" />
<logFile
name="org.eclipse.core.tests.runtime"
type="test" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@
<plugin
id="org.eclipse.core.tests.resources"
version="0.0.0"/>

<plugin
id="org.eclipse.core.tests.resources.saveparticipant"
version="0.0.0"/>

<plugin
id="org.eclipse.core.tests.net"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1897,6 +1897,12 @@
depends="init">
<runTests testPlugin="org.eclipse.core.tests.resources" />
</target>

<target
name="coreresourcessaveparticipant"
depends="init">
<runTests testPlugin="org.eclipse.core.tests.resources.saveparticipant" />
</target>

<target
name="coreruntime"
Expand Down Expand Up @@ -2624,6 +2630,7 @@
<antcall target="swt" />
<antcall target="corecontenttype" />
<antcall target="coreexpressions" />
<antcall target="coreresourcessaveparticipant" />
<antcall target="coretestsnet" />
<antcall target="text" />
<antcall target="jfacedatabinding" />
Expand Down

0 comments on commit b34ed4f

Please sign in to comment.