From 5acfbc1b2ffbd156ca7a1f2cc09084a518f1d58e Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Wed, 15 Aug 2018 13:11:34 +0200 Subject: main: add -e as an alias for -exclude --- tests/reverse/exclude_test.go | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'tests/reverse/exclude_test.go') diff --git a/tests/reverse/exclude_test.go b/tests/reverse/exclude_test.go index a64b3da..aaecd65 100644 --- a/tests/reverse/exclude_test.go +++ b/tests/reverse/exclude_test.go @@ -44,7 +44,7 @@ func ctlsockEncryptPath(t *testing.T, sock string, path string) string { return response.Result } -func TestExclude(t *testing.T) { +func testExclude(t *testing.T, flag string) { pOk := []string{ "file2", "dir1/file1", @@ -74,7 +74,7 @@ func TestExclude(t *testing.T) { sock := mnt + ".sock" cliArgs := []string{"-reverse", "-extpass", "echo test", "-ctlsock", sock} for _, v := range pExclude { - cliArgs = append(cliArgs, "-exclude", v) + cliArgs = append(cliArgs, flag, v) } if plaintextnames { cliArgs = append(cliArgs, "-config", "exclude_test_fs/.gocryptfs.reverse.conf.plaintextnames") @@ -102,3 +102,8 @@ func TestExclude(t *testing.T) { } } } + +func TestExclude(t *testing.T) { + testExclude(t, "-exclude") + testExclude(t, "-e") +} -- cgit v1.2.3