From 1ba99da7bd93ef98653965050f9efc6a8ea011c5 Mon Sep 17 00:00:00 2001 From: "Johan T. Halseth" Date: Wed, 12 Jun 2019 16:43:53 +0200 Subject: [PATCH 1/2] gitignore: ignore new output file location --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e45fab96..be7ea81a 100644 --- a/.gitignore +++ b/.gitignore @@ -32,7 +32,7 @@ _testmain.go /lncli-itest # Integration test log files -output*.log +lntest/itest/output*.log lntest/itest/.backendlogs lntest/itest/.minerlogs From dcaed7254e59302e7fa9c1b30fc3247466787935 Mon Sep 17 00:00:00 2001 From: "Johan T. Halseth" Date: Wed, 12 Jun 2019 16:44:21 +0200 Subject: [PATCH 2/2] make: delete log files at new output file location --- make/testing_flags.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/testing_flags.mk b/make/testing_flags.mk index 57a002be..d947803a 100644 --- a/make/testing_flags.mk +++ b/make/testing_flags.mk @@ -65,4 +65,4 @@ else ITEST_TAGS += btcd endif -ITEST := rm output*.log; date; $(GOTEST) ./lntest/itest -tags="$(ITEST_TAGS)" $(TEST_FLAGS) -logoutput +ITEST := rm lntest/itest/output*.log; date; $(GOTEST) ./lntest/itest -tags="$(ITEST_TAGS)" $(TEST_FLAGS) -logoutput