diff options
author | Manuel Carmona <manu.carmona90@gmail.com> | 2017-08-07 12:11:00 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2017-08-07 12:11:00 +0200 |
commit | da410ded51ddab7729992540b54c739e43090244 (patch) | |
tree | 5754962d1152781a718083c1aba015d08ebbb24b /worktree_test.go | |
parent | 80421da9614ad81c7d1d45d48c0f291654070c54 (diff) | |
download | go-git-da410ded51ddab7729992540b54c739e43090244.tar.gz |
*: windows support, some more fixes (2) (#536)
* fixed windows failed test: "143 FAIL: worktree_test.go:314: WorktreeSuite.TestFilenameNormalization"
* fixed windows failed test: "489: FAIL: auth_method_test.go:106: SuiteCommon.TestNewSSHAgentAuthNoAgent"
* fixed windows failed test: "279 FAIL: server_test.go:50: ServerSuite.TestClone"
fixed windows failed test: "298 FAIL: server_test.go:37: ServerSuite.TestPush"
* fixed windows failed test: "316 FAIL: <autogenerated>:26: UploadPackSuite.TearDownSuite"
* fixed windows failed test: "FAIL: <autogenerated>:6: IndexSuite.TearDownSuite"
Diffstat (limited to 'worktree_test.go')
-rw-r--r-- | worktree_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/worktree_test.go b/worktree_test.go index 0a1c2d1..70167f0 100644 --- a/worktree_test.go +++ b/worktree_test.go @@ -312,6 +312,10 @@ func (s *WorktreeSuite) TestCheckoutSymlink(c *C) { } func (s *WorktreeSuite) TestFilenameNormalization(c *C) { + if runtime.GOOS == "windows" { + c.Skip("windows paths may contain non utf-8 sequences") + } + url := c.MkDir() path := fixtures.Basic().ByTag("worktree").One().Worktree().Root() |