r3853 - branches/4.0.1/src/test/java/fr/ifremer/isisfish/vcs
Author: echatellier Date: 2013-11-27 10:33:13 +0100 (Wed, 27 Nov 2013) New Revision: 3853 Url: http://forge.codelutin.com/projects/isis-fish/repository/revisions/3853 Log: Run test into /tmp (no other solution for now) Modified: branches/4.0.1/src/test/java/fr/ifremer/isisfish/vcs/VCSSVNTest.java Modified: branches/4.0.1/src/test/java/fr/ifremer/isisfish/vcs/VCSSVNTest.java =================================================================== --- branches/4.0.1/src/test/java/fr/ifremer/isisfish/vcs/VCSSVNTest.java 2013-11-26 23:17:38 UTC (rev 3852) +++ branches/4.0.1/src/test/java/fr/ifremer/isisfish/vcs/VCSSVNTest.java 2013-11-27 09:33:13 UTC (rev 3853) @@ -5,7 +5,7 @@ * $Id$ * $HeadURL$ * %% - * Copyright (C) 2008 - 2012 Ifremer, Code Lutin, Chatellier Eric + * Copyright (C) 2008 - 2013 Ifremer, Code Lutin, Chatellier Eric * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as @@ -74,7 +74,12 @@ /** Class logger */ private static Log log = LogFactory.getLog(VCSSVNTest.class); - public static final File TMPDIR = getTestDirectory(); + /** + * Run test out of target directory for SVN to not find parent .svn with not supported svn format. + * + * FIXME echatellier 20131127 : try to relocate into target and chroot svnkit tests + */ + public static final File TMPDIR = new File("/tmp"); public static final String FILECONTENTTAG = "Version 3.1.0"; public static final String FILECONTENTTRUNK = "Version 3.2.0";
participants (1)
-
echatellier@users.forge.codelutin.com