# HG changeset patch # User Dmitry Neverov # Date 1529573065 -7200 # Node ID 87170a4322573aa2bd890947c7ed106c3731d974 # Parent c515b69b90fd44337f20d188fb56b50098bdd03c Disable failing tests Mercurial still doesn't support non-ascii file names, so tests always fail (TW-24317). diff -r c515b69b90fd -r 87170a432257 mercurial-tests/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/MercurialVcsSupportTest.java --- a/mercurial-tests/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/MercurialVcsSupportTest.java Mon May 07 09:35:56 2018 +0200 +++ b/mercurial-tests/src/jetbrains/buildServer/buildTriggers/vcs/mercurial/MercurialVcsSupportTest.java Thu Jun 21 11:24:25 2018 +0200 @@ -184,6 +184,7 @@ checkPatchResult(output.toByteArray()); } + @Test(enabled = false) public void test_build_incremental_patch_file_non_ascii_does_not_fail() throws IOException, VcsException { final String path = Util.getHgPath(); final VersionCommand versionCommand = new VersionCommand(new TestCommandSettingsFactory().create(), path, new File("..")); @@ -389,7 +390,7 @@ @RequiredHgVersion(min = "2.7") - @Test(dataProviderClass = HgVersionConstraint.class, dataProvider = "installedHgVersion") + @Test(dataProviderClass = HgVersionConstraint.class, dataProvider = "installedHgVersion", enabled = false) public void unicode_in_filename(@NotNull HgVersion _) throws Exception { File repo = copyRepository(myTempFiles, new File("mercurial-tests/testData/unicodeFileName").getAbsolutePath()); VcsRoot root = vcsRoot().withUrl(repo.getAbsolutePath())