Browse Source

Ensure FSTest uses MockSystemReader

Tests shall not modify ~/.gitconfig. When running tests with bazel this
test failed since bazel isolates tests in a sandbox.

Change-Id: I7dd092afd14972da58a95eb7c200d353f0959fa1
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v5.1.9.201908210455-r
Matthias Sohn 4 years ago
parent
commit
69ce7fc7fb
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      org.eclipse.jgit.test/tst/org/eclipse/jgit/util/FSTest.java

+ 2
- 0
org.eclipse.jgit.test/tst/org/eclipse/jgit/util/FSTest.java View File

@@ -65,6 +65,7 @@ import java.util.Set;
import java.util.concurrent.TimeUnit;

import org.eclipse.jgit.errors.CommandFailedException;
import org.eclipse.jgit.junit.MockSystemReader;
import org.eclipse.jgit.junit.RepositoryTestCase;
import org.eclipse.jgit.lib.RepositoryCache;
import org.junit.After;
@@ -77,6 +78,7 @@ public class FSTest {

@Before
public void setUp() throws Exception {
SystemReader.setInstance(new MockSystemReader());
trash = File.createTempFile("tmp_", "");
trash.delete();
assertTrue("mkdir " + trash, trash.mkdir());

Loading…
Cancel
Save