Skip to main content
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGrant Gayed2005-08-22 18:01:38 +0000
committerGrant Gayed2005-08-22 18:01:38 +0000
commit7f4f0cf91f73e42703b3ba2d8e34ae06717a0b6c (patch)
tree42c54105cf39ec486f16126c48e9e7d3e0d46b68 /tests
parent7a6c152bfc42500b422bc19808be27df1677ef13 (diff)
downloadeclipse.platform.swt-7f4f0cf91f73e42703b3ba2d8e34ae06717a0b6c.tar.gz
eclipse.platform.swt-7f4f0cf91f73e42703b3ba2d8e34ae06717a0b6c.tar.xz
eclipse.platform.swt-7f4f0cf91f73e42703b3ba2d8e34ae06717a0b6c.zip
introduce carbon tests
Diffstat (limited to 'tests')
-rw-r--r--tests/org.eclipse.swt.tests/test.xml9
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/org.eclipse.swt.tests/test.xml b/tests/org.eclipse.swt.tests/test.xml
index fa576e3033..a7d1c59f23 100644
--- a/tests/org.eclipse.swt.tests/test.xml
+++ b/tests/org.eclipse.swt.tests/test.xml
@@ -26,12 +26,15 @@
<target name="suite" unless="performance">
<property name="data" value="${eclipse-home}/swt_sniff_folder"/>
<delete dir="${location1}" quiet="true"/>
- <!-- Run all SWT tests on Windows. Run only Gtk tests otherwise. -->
+ <!-- Run all SWT tests on Windows, and either Carbon tests or Gtk tests otherwise. -->
<condition property="class-tests" value="org.eclipse.swt.tests.junit.AllGtkTests">
- <os family="unix"/>
+ <equals arg1="${arch}" arg2="linux"/>
+ </condition>
+ <condition property="class-tests" value="org.eclipse.swt.tests.junit.AllCarbonTests">
+ <equals arg1="${arch}" arg2="macosx"/>
</condition>
<condition property="class-tests" value="org.eclipse.swt.tests.junit.AllTests">
- <os family="windows"/>
+ <equals arg1="${arch}" arg2="win32"/>
</condition>
<ant target="core-test" antfile="${library-file}" dir="${eclipse-home}">
<property name="data-dir" value="${data}"/>

Back to the top