Skip to content

Commit cbdad07

Browse files
committed
Added test fix for Appveyor
1 parent 2baf4f6 commit cbdad07

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pom.xml

+6
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
8181
<groupId>org.apache.maven.plugins</groupId>
8282
<artifactId>maven-surefire-plugin</artifactId>
8383
<version>2.18.1</version>
84+
<configuration>
85+
<!-- Don't try to load JNA from the host system, use our dependency instead (needed for Appveyor, which has an old JNA on it) -->
86+
<argLine>-Djna.nosys=true</argLine>
87+
<forkCount>1</forkCount>
88+
<reuseForks>false</reuseForks>
89+
</configuration>
8490
</plugin>
8591

8692
<!-- Compile and use our build addon that compiles the Rust code -->

0 commit comments

Comments
 (0)