From d396832d4845ea47fec8a38ad9c665e667947598 Mon Sep 17 00:00:00 2001 From: Mariano Alvira Date: Sat, 18 May 2013 13:42:20 -0400 Subject: [PATCH] Travis: Run java with -Xshared:on. The previous jvm had shared on by default and cooja requires this. --- regression-tests/Makefile.simulation-test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regression-tests/Makefile.simulation-test b/regression-tests/Makefile.simulation-test index 3b20e5376..4af001ef0 100644 --- a/regression-tests/Makefile.simulation-test +++ b/regression-tests/Makefile.simulation-test @@ -56,7 +56,7 @@ endif %.testlog: %.csc cooja @echo -n Running test $(basename $<) ... "" - @(java -jar $(CONTIKI)/tools/cooja/dist/cooja.jar \ + @(java -Xshare:on -jar $(CONTIKI)/tools/cooja/dist/cooja.jar \ -nogui=$< -contiki=$(CONTIKI) > $(basename $@).log || \ (echo " FAIL ಠ_ಠ" | tee -a COOJA.testlog; \ tail -50 COOJA.log; \