From a80d798c2deab44e2abc37eeae59546f0d7eec40 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Tue, 7 Mar 2017 20:53:58 +0100 Subject: tests: reverse: don't run tests that ignore "-plaintextnames" twice TestMain() runs all tests twice, once with plaintextnames=true and once with false. Several tests mount their own filesystem and ignore the plaintextnames variable. It makes no sense to run them twice, so skip execution when plaintextnames is set. --- tests/reverse/ctlsock_test.go | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tests/reverse/ctlsock_test.go') diff --git a/tests/reverse/ctlsock_test.go b/tests/reverse/ctlsock_test.go index 8a7d462..c3ee121 100644 --- a/tests/reverse/ctlsock_test.go +++ b/tests/reverse/ctlsock_test.go @@ -24,6 +24,9 @@ var ctlSockTestCases = [][]string{ // Test DecryptPath and EncryptPath func TestCtlSockPathOps(t *testing.T) { + if plaintextnames { + t.Skip("this only tests encrypted names") + } mnt, err := ioutil.TempDir(test_helpers.TmpDir, "reverse_mnt_") if err != nil { t.Fatal(err) @@ -54,6 +57,9 @@ func TestCtlSockPathOps(t *testing.T) { // We should not panic when somebody feeds requests that make no sense func TestCtlSockCrash(t *testing.T) { + if plaintextnames { + t.Skip("this only tests encrypted names") + } mnt, err := ioutil.TempDir(test_helpers.TmpDir, "reverse_mnt_") if err != nil { t.Fatal(err) -- cgit v1.2.3