diff options
author | Marc Strapetz <marc.strapetz@syntevo.com> | 2010-04-20 21:01:19 +0200 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2010-06-04 19:08:58 -0700 |
commit | 936e4ab2f2ad4847e22483b26eb61f0c8e56b70c (patch) | |
tree | 731290ad8d049ca21e3a483a346ebb36c4fcac15 /org.eclipse.jgit.test/exttst/org/eclipse | |
parent | 92eedd667dd75cda762b2ac758dcd1845b05886c (diff) | |
download | jgit-936e4ab2f2ad4847e22483b26eb61f0c8e56b70c.tar.gz jgit-936e4ab2f2ad4847e22483b26eb61f0c8e56b70c.zip |
Repository can be configured with FS
On Windows, FS_Win32_Cygwin has been used if a Cygwin Git installation
is present in the PATH. Assuming that the user works with the Cygwin
Git installation may result in unnecessary overhead if he actually
does not.
Applications built on top of jgit may have more knowledge on the
actually used Git client (Cygwin or not) and hence should be able to
configure which FS to use accordingly.
Change-Id: Ifc4278078b298781d55cf5421e9647a21fa5db24
Diffstat (limited to 'org.eclipse.jgit.test/exttst/org/eclipse')
-rw-r--r-- | org.eclipse.jgit.test/exttst/org/eclipse/jgit/lib/T0007_GitIndexTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit.test/exttst/org/eclipse/jgit/lib/T0007_GitIndexTest.java b/org.eclipse.jgit.test/exttst/org/eclipse/jgit/lib/T0007_GitIndexTest.java index 21dcdffbfd..dd3b51efc7 100644 --- a/org.eclipse.jgit.test/exttst/org/eclipse/jgit/lib/T0007_GitIndexTest.java +++ b/org.eclipse.jgit.test/exttst/org/eclipse/jgit/lib/T0007_GitIndexTest.java @@ -337,7 +337,7 @@ public class T0007_GitIndexTest extends LocalDiskRepositoryTestCase { } public void test030_executeBit_coreModeTrue() throws IllegalArgumentException, IllegalAccessException, InvocationTargetException, Error, Exception { - if (!FS.INSTANCE.supportsExecute()) { + if (!FS.DETECTED.supportsExecute()) { System.err.println("Test ignored since platform FS does not support the execute permission"); return; } @@ -392,7 +392,7 @@ public class T0007_GitIndexTest extends LocalDiskRepositoryTestCase { } public void test031_executeBit_coreModeFalse() throws IllegalArgumentException, IllegalAccessException, InvocationTargetException, Error, Exception { - if (!FS.INSTANCE.supportsExecute()) { + if (!FS.DETECTED.supportsExecute()) { System.err.println("Test ignored since platform FS does not support the execute permission"); return; } |