From df41f152de38ec1c2f9e32df4f93e6994369aa7f Mon Sep 17 00:00:00 2001 From: Raymond Hogenson Date: Sun, 11 Nov 2018 22:22:33 -0500 Subject: Write blockCopy's first version Wow it's like being a proud parent. This software is written for exactly one purpose: to mount an encrypted volume on Google Drive with reasonably good performance. It's based around the idea that the fastest thing for Google Drive is reading and writing whole files, so we break a file up into blocks and transfer only whole blocks. It works, but it's still really slow. --- test/Spec.hs | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 test/Spec.hs (limited to 'test') diff --git a/test/Spec.hs b/test/Spec.hs new file mode 100644 index 0000000..cd4753f --- /dev/null +++ b/test/Spec.hs @@ -0,0 +1,2 @@ +main :: IO () +main = putStrLn "Test suite not yet implemented" -- cgit v1.3.1