Skip to content

Commit

Permalink
Merge pull request #18 from fsteeg/master
Browse files Browse the repository at this point in the history
Fix running UI tests on Mac
  • Loading branch information
caniszczyk committed Oct 6, 2011
2 parents e230849 + 7bea49b commit 33fe88d
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion org.aniszczyk.minerva.tests.ui/pom.xml
Expand Up @@ -26,7 +26,9 @@

<properties>
<local-p2-site>file:/${basedir}/../org.aniszczyk.minerva-updatesite/target/site</local-p2-site>
<ui.test.vmargs>-Xmx512m -XX:MaxPermSize=256m</ui.test.vmargs>
<ui.test.vmargs.all>-Xmx512m -XX:MaxPermSize=256m</ui.test.vmargs.all>
<ui.test.vmargs.mac>-XstartOnFirstThread</ui.test.vmargs.mac>
<ui.test.vmargs>${ui.test.vmargs.all}</ui.test.vmargs>
</properties>

<repositories>
Expand All @@ -49,6 +51,17 @@
<maven.test.skip>true</maven.test.skip>
</properties>
</profile>
<profile>
<id>mac-customization</id>
<activation>
<os>
<family>mac</family>
</os>
</activation>
<properties>
<ui.test.vmargs>${ui.test.vmargs.all} ${ui.test.vmargs.mac}</ui.test.vmargs>
</properties>
</profile>
</profiles>

<build>
Expand Down

0 comments on commit 33fe88d

Please sign in to comment.