summaryrefslogtreecommitdiff
path: root/configure.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-02-11 15:37:37 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-02-11 15:37:37 -0400
commit5a50a7cf137997a9d940b9a89a0968452a1ac411 (patch)
tree64ac76dc4a4327a2b3eafbee28c45670af71340f /configure.hs
parent285fb2bb08c7da534c111ebfeee5911e850570cc (diff)
update unicode FilePath handling
Based on http://hackage.haskell.org/trac/ghc/ticket/3307 , whether FilePath contains decoded unicode varies by OS. So, add a configure check for it. Also, renamed showFile to filePathToString
Diffstat (limited to 'configure.hs')
-rw-r--r--configure.hs15
1 files changed, 15 insertions, 0 deletions
diff --git a/configure.hs b/configure.hs
index 1451d7eaa..b5437ec1a 100644
--- a/configure.hs
+++ b/configure.hs
@@ -1,6 +1,7 @@
{- Checks system configuration and generates SysConfig.hs. -}
import System.Directory
+import Data.List
import TestConfig
@@ -13,6 +14,7 @@ tests = [
, TestCase "sha1sum" $ requireCmd "sha1sum" "sha1sum </dev/null"
, TestCase "xargs -0" $ requireCmd "xargs_0" "xargs -0 </dev/null"
, TestCase "rsync" $ requireCmd "rsync" "rsync --version >/dev/null"
+ , TestCase "unicode FilePath support" $ unicodeFilePath
]
tmpDir :: String
@@ -27,6 +29,19 @@ testCp k option = TestCase cmd $ testCmd k run
cmd = "cp " ++ option
run = cmd ++ " " ++ testFile ++ " " ++ testFile ++ ".new"
+{- Checks if FilePaths contain decoded unicode, or not. The testdata
+ - directory contains a "unicode-test-ü" file; try to find the file,
+ - and see if the "ü" is encoded correctly.
+ -
+ - Note that the file is shipped with git-annex, rather than created,
+ - to avoid other potential unicode issues.
+ -}
+unicodeFilePath :: Test
+unicodeFilePath = do
+ fs <- getDirectoryContents "testdata"
+ let file = head $ filter (isInfixOf "unicode-test") fs
+ return $ Config "unicodefilepath" (BoolConfig $ isInfixOf "ü" file)
+
setup :: IO ()
setup = do
createDirectoryIfMissing True tmpDir