summaryrefslogtreecommitdiff
path: root/integrationtests/dtail_test.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2021-10-24 13:44:06 +0300
committerPaul Buetow <paul@buetow.org>2021-10-24 13:44:06 +0300
commit87b6c47999f49c2deff42fdcc703c419b251bdbc (patch)
treec5f0e418460c8987289cec4505eb88bb035d1dfe /integrationtests/dtail_test.go
parent14959ffba46282dd7b8ada53db0dfc0e1b26ab2e (diff)
integration tests use a different known_hosts path and also dont read any external config files
Diffstat (limited to 'integrationtests/dtail_test.go')
-rw-r--r--integrationtests/dtail_test.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/integrationtests/dtail_test.go b/integrationtests/dtail_test.go
index 56008df..6814c42 100644
--- a/integrationtests/dtail_test.go
+++ b/integrationtests/dtail_test.go
@@ -34,8 +34,9 @@ func TestDTailWithServer(t *testing.T) {
serverCh, _, _, err := startCommand(ctx, t,
"../dserver",
+ "--cfg", "none",
"--logger", "stdout",
- "--logLevel", "trace",
+ "--logLevel", "info",
"--bindAddress", "localhost",
"--port", "4243",
"--relaxedAuth",
@@ -48,8 +49,9 @@ func TestDTailWithServer(t *testing.T) {
// MAYBETODO: In testmode, never read a config file (use none for all commands)
clientCh, _, _, err := startCommand(ctx, t,
"../dtail",
+ "--cfg", "none",
"--logger", "stdout",
- "--logLevel", "trace",
+ "--logLevel", "info",
"--servers", "localhost:4243",
"--files", followFile,
"--grep", "Hello",