aboutsummaryrefslogtreecommitdiff
path: root/main_test.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2015-09-18 22:14:07 +0200
committerJakob Unterwurzacher2015-09-18 22:14:07 +0200
commit8fe5ec7381778bbbf90a7ad0e9d1f05cb2d9ac23 (patch)
tree567874364416aafa400336a103d0423f4a76f0f3 /main_test.go
parente84c1e3741bd7f7b3be8a424ee142005b1e7601f (diff)
Add --cpuprofile flag
Diffstat (limited to 'main_test.go')
-rw-r--r--main_test.go16
1 files changed, 11 insertions, 5 deletions
diff --git a/main_test.go b/main_test.go
index 667d626..93aa6ff 100644
--- a/main_test.go
+++ b/main_test.go
@@ -16,12 +16,16 @@ const tmpDir = "main_test_tmp/"
const plainDir = tmpDir + "plain/"
const cipherDir = tmpDir + "cipher/"
-func TestMain(m *testing.M) {
-
+func unmount() error {
fu := exec.Command("fusermount", "-u", plainDir)
fu.Stdout = os.Stdout
fu.Stderr = os.Stderr
- fu.Run()
+ return fu.Run()
+}
+
+func TestMain(m *testing.M) {
+
+ unmount()
os.RemoveAll(tmpDir)
err := os.MkdirAll(plainDir, 0777)
@@ -34,6 +38,7 @@ func TestMain(m *testing.M) {
panic("Could not create cipherDir")
}
+ //c := exec.Command("./gocryptfs", "--zerokey", "--cpuprofile", "/tmp/gcfs.cpu", cipherDir, plainDir)
c := exec.Command("./gocryptfs", "--zerokey", cipherDir, plainDir)
c.Stdout = os.Stdout
c.Stderr = os.Stderr
@@ -43,7 +48,7 @@ func TestMain(m *testing.M) {
r := m.Run()
- fu.Run()
+ unmount()
os.Exit(r)
}
@@ -142,7 +147,7 @@ func BenchmarkStreamRead(t *testing.B) {
if t.N > mb {
// Grow file so we can satisfy the test
- fmt.Printf("Growing file to %d MB\n", t.N)
+ fmt.Printf("Growing file to %d MB... ", t.N)
f2, err := os.OpenFile(fn, os.O_WRONLY | os.O_APPEND, 0666)
if err != nil {
fmt.Println(err)
@@ -156,6 +161,7 @@ func BenchmarkStreamRead(t *testing.B) {
}
}
f2.Close()
+ fmt.Printf("done\n")
}
file, err := os.Open(plainDir + "BenchmarkWrite")