From 8dbd6542623562e3dbc1ab29730ea12efe58e704 Mon Sep 17 00:00:00 2001 From: Svetoslav Neykov Date: Thu, 17 Mar 2016 18:38:34 +0200 Subject: [PATCH] Disable tests on Windows Windows doesn't support the expected file attributes, disable tests. --- .../launcher/common/BrooklynPropertiesFactoryHelperTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/launcher-common/src/test/java/org/apache/brooklyn/launcher/common/BrooklynPropertiesFactoryHelperTest.java b/launcher-common/src/test/java/org/apache/brooklyn/launcher/common/BrooklynPropertiesFactoryHelperTest.java index 9629bd5a1f..9c31fccc73 100644 --- a/launcher-common/src/test/java/org/apache/brooklyn/launcher/common/BrooklynPropertiesFactoryHelperTest.java +++ b/launcher-common/src/test/java/org/apache/brooklyn/launcher/common/BrooklynPropertiesFactoryHelperTest.java @@ -43,7 +43,7 @@ public class BrooklynPropertiesFactoryHelperTest { - @Test + @Test(groups="UNIX") public void testChecksGlobalBrooklynPropertiesPermissionsX00() throws Exception { File propsFile = File.createTempFile("testChecksGlobalBrooklynPropertiesPermissionsX00", ".properties"); propsFile.setReadable(true, false); @@ -59,7 +59,7 @@ public void testChecksGlobalBrooklynPropertiesPermissionsX00() throws Exception } } - @Test + @Test(groups="UNIX") public void testChecksLocalBrooklynPropertiesPermissionsX00() throws Exception { File propsFile = File.createTempFile("testChecksLocalBrooklynPropertiesPermissionsX00", ".properties"); propsFile.setReadable(true, false);