Updated Branches: refs/heads/master 2d21cc749 -> 917fb371f
add more debug, this make me crazy Project: http://git-wip-us.apache.org/repos/asf/maven-scm/repo Commit: http://git-wip-us.apache.org/repos/asf/maven-scm/commit/917fb371 Tree: http://git-wip-us.apache.org/repos/asf/maven-scm/tree/917fb371 Diff: http://git-wip-us.apache.org/repos/asf/maven-scm/diff/917fb371 Branch: refs/heads/master Commit: 917fb371f1b29e20a9d73b897a443802000e8f25 Parents: 2d21cc7 Author: olivier lamy <[email protected]> Authored: Sat Oct 13 22:05:39 2012 +0200 Committer: olivier lamy <[email protected]> Committed: Sat Oct 13 22:05:39 2012 +0200 ---------------------------------------------------------------------- .../command/status/GitStatusConsumerTest.java | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven-scm/blob/917fb371/maven-scm-providers/maven-scm-providers-git/maven-scm-provider-gitexe/src/test/java/org/apache/maven/scm/provider/git/gitexe/command/status/GitStatusConsumerTest.java ---------------------------------------------------------------------- diff --git a/maven-scm-providers/maven-scm-providers-git/maven-scm-provider-gitexe/src/test/java/org/apache/maven/scm/provider/git/gitexe/command/status/GitStatusConsumerTest.java b/maven-scm-providers/maven-scm-providers-git/maven-scm-provider-gitexe/src/test/java/org/apache/maven/scm/provider/git/gitexe/command/status/GitStatusConsumerTest.java index fa1e8d9..2f9272f 100644 --- a/maven-scm-providers/maven-scm-providers-git/maven-scm-provider-gitexe/src/test/java/org/apache/maven/scm/provider/git/gitexe/command/status/GitStatusConsumerTest.java +++ b/maven-scm-providers/maven-scm-providers-git/maven-scm-provider-gitexe/src/test/java/org/apache/maven/scm/provider/git/gitexe/command/status/GitStatusConsumerTest.java @@ -247,7 +247,11 @@ public class GitStatusConsumerTest { File dir = createTempDirectory(); - FileUtils.write( new File( dir, "NewCapfile" ), "data" ); + File tmpFile = new File( dir, "NewCapfile" ); + + FileUtils.write( tmpFile, "data" ); + + System.out.println( "write tmp file '" + tmpFile.getAbsolutePath() + "'" ); GitStatusConsumer consumer = new GitStatusConsumer( new DefaultLog( true ), dir.getCanonicalFile() );
