DORMANTno replies

[JGIT PATCH] Skip executeBit-tests for filesystems which do not support this feature

From: Tor Arne Vestbø <hidden>
Date: 2016-06-15 22:46:05
Subsystem: the rest · Maintainer: Linus Torvalds

Signed-off-by: Tor Arne Vestbø <redacted>
---
 .../tst/org/spearce/jgit/lib/T0007_Index.java      |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/org.spearce.jgit.test/tst/org/spearce/jgit/lib/T0007_Index.java b/org.spearce.jgit.test/tst/org/spearce/jgit/lib/T0007_Index.java
index 499812e..fbda4fb 100644
--- a/org.spearce.jgit.test/tst/org/spearce/jgit/lib/T0007_Index.java
+++ b/org.spearce.jgit.test/tst/org/spearce/jgit/lib/T0007_Index.java
@@ -46,6 +46,7 @@
 import java.lang.reflect.Method;
 
 import org.spearce.jgit.lib.GitIndex.Entry;
+import org.spearce.jgit.util.FS;
 
 public class T0007_Index extends RepositoryTestCase {
 
@@ -319,6 +320,10 @@ public void testCheckout() throws Exception {
 	}
 
 	public void test030_executeBit_coreModeTrue() throws IllegalArgumentException, IllegalAccessException, InvocationTargetException, Error, Exception {
+		if (!FS.INSTANCE.supportsExecute()) {
+			System.err.println("Test ignored since platform FS does not support the execute permission");
+			return;
+		}
 		try {
 			// coremode true is the default, typically set to false
 			// by git init (but not jgit!)
@@ -370,6 +375,10 @@ public void test030_executeBit_coreModeTrue() throws IllegalArgumentException, I
 	}
 
 	public void test031_executeBit_coreModeFalse() throws IllegalArgumentException, IllegalAccessException, InvocationTargetException, Error, Exception {
+		if (!FS.INSTANCE.supportsExecute()) {
+			System.err.println("Test ignored since platform FS does not support the execute permission");
+			return;
+		}
 		try {
 			// coremode true is the default, typically set to false
 			// by git init (but not jgit!)
-- 
1.6.1.2.309.g2ea3
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help