diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6159bea..020a9c3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -82,7 +82,7 @@ jobs: - name: tests and benchmarks run: | - go test -count=1 -timeout 1m --exec=/bin/true ./... + go test -count=1 -timeout 1m --exec=/bin/true -trimpath ./... run_tests: @@ -104,8 +104,8 @@ jobs: - name: tests and benchmarks run: | - go test -timeout 1m -race -run=XXXX -bench=. ./... - go test -timeout 4m -race ./... + go test -timeout 1m -race -run=XXXX -bench=. -trimpath ./... + go test -timeout 4m -race -trimpath ./... - name: test coverage run: | @@ -117,7 +117,7 @@ jobs: shasum --algorithm 512 --check <(curl -s "https://raw.githubusercontent.com/codecov/codecov-bash/${VERSION}/SHA512SUM" | grep codecov) rm -rf codecov - go test -timeout 4m -race -cover -coverprofile=coverage.out ./... && bash <(curl -s https://codecov.io/bash) + go test -timeout 4m -race -cover -coverprofile=coverage.out -trimpath ./... && bash <(curl -s https://codecov.io/bash) go tool cover -html=coverage.out -o coverage.html go tool cover -func=coverage.out @@ -193,7 +193,7 @@ jobs: find . -name "*.go" | xargs -n 1 sed -i.backup 's/sync.Mutex/deadlock.Mutex/' find . -name '*.backup' -delete /home/runner/go/bin/goimports -w . - go test -timeout 4m -race ./... + go test -timeout 4m -race -trimpath ./... go mod tidy # error shadowing diff --git a/testdata/e2e_test/&SomeConcreteError.txt b/testdata/e2e_test/&SomeConcreteError.txt index 2746c93..3ffefc6 100644 --- a/testdata/e2e_test/&SomeConcreteError.txt +++ b/testdata/e2e_test/&SomeConcreteError.txt @@ -13,10 +13,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:471 github.com/komuw/kama_test.TestAllAboutInterfaces.func1.1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:471 github.com/komuw/kama_test.TestAllAboutInterfaces.func1.1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: &error(unable to read from ftp file) ] diff --git a/testdata/e2e_test/NilEmptyInterface.txt b/testdata/e2e_test/NilEmptyInterface.txt index 76e0d9b..2815e3c 100644 --- a/testdata/e2e_test/NilEmptyInterface.txt +++ b/testdata/e2e_test/NilEmptyInterface.txt @@ -11,10 +11,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:85 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:471 github.com/komuw/kama_test.TestAllAboutInterfaces.func1.1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:85 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:471 github.com/komuw/kama_test.TestAllAboutInterfaces.func1.1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: nil ] diff --git a/testdata/e2e_test/NonNilEmptyInterface.txt b/testdata/e2e_test/NonNilEmptyInterface.txt index 39ae285..16c326e 100644 --- a/testdata/e2e_test/NonNilEmptyInterface.txt +++ b/testdata/e2e_test/NonNilEmptyInterface.txt @@ -11,10 +11,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:471 github.com/komuw/kama_test.TestAllAboutInterfaces.func1.1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:471 github.com/komuw/kama_test.TestAllAboutInterfaces.func1.1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: int(9) ] diff --git a/testdata/e2e_test/SomeConcreteError.txt b/testdata/e2e_test/SomeConcreteError.txt index da094b9..a6bafa8 100644 --- a/testdata/e2e_test/SomeConcreteError.txt +++ b/testdata/e2e_test/SomeConcreteError.txt @@ -13,10 +13,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:471 github.com/komuw/kama_test.TestAllAboutInterfaces.func1.1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:471 github.com/komuw/kama_test.TestAllAboutInterfaces.func1.1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: error(unable to read from ftp file) ] diff --git a/testdata/e2e_test/SomeNilError.txt b/testdata/e2e_test/SomeNilError.txt index 76e0d9b..2815e3c 100644 --- a/testdata/e2e_test/SomeNilError.txt +++ b/testdata/e2e_test/SomeNilError.txt @@ -11,10 +11,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:85 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:471 github.com/komuw/kama_test.TestAllAboutInterfaces.func1.1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:85 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:471 github.com/komuw/kama_test.TestAllAboutInterfaces.func1.1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: nil ] diff --git a/testdata/e2e_test/SomeReader.txt b/testdata/e2e_test/SomeReader.txt index e8d4f18..a0edeaa 100644 --- a/testdata/e2e_test/SomeReader.txt +++ b/testdata/e2e_test/SomeReader.txt @@ -23,10 +23,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:471 github.com/komuw/kama_test.TestAllAboutInterfaces.func1.1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:471 github.com/komuw/kama_test.TestAllAboutInterfaces.func1.1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: &Reader{ } diff --git a/testdata/e2e_test/custom_string_type.txt b/testdata/e2e_test/custom_string_type.txt index d967beb..7624a21 100644 --- a/testdata/e2e_test/custom_string_type.txt +++ b/testdata/e2e_test/custom_string_type.txt @@ -14,10 +14,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:90 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:90 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: secretKey(T) ] diff --git a/testdata/e2e_test/map_in_a_struct_is_not_compacted.txt b/testdata/e2e_test/map_in_a_struct_is_not_compacted.txt index 9b1cb85..16909e6 100644 --- a/testdata/e2e_test/map_in_a_struct_is_not_compacted.txt +++ b/testdata/e2e_test/map_in_a_struct_is_not_compacted.txt @@ -13,10 +13,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: someStructWithMap{ XX: map[int]string{ diff --git a/testdata/e2e_test/map_on_its_own_is_not_compacted.txt b/testdata/e2e_test/map_on_its_own_is_not_compacted.txt index 1843553..1473b45 100644 --- a/testdata/e2e_test/map_on_its_own_is_not_compacted.txt +++ b/testdata/e2e_test/map_on_its_own_is_not_compacted.txt @@ -11,10 +11,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: map[int]string{ int(0): "0", diff --git a/testdata/e2e_test/normal_string.txt b/testdata/e2e_test/normal_string.txt index 49e0a9e..47f624a 100644 --- a/testdata/e2e_test/normal_string.txt +++ b/testdata/e2e_test/normal_string.txt @@ -11,10 +11,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:124 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:124 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: "heyWorldOkay" ] diff --git a/testdata/e2e_test/number_float32.txt b/testdata/e2e_test/number_float32.txt index 72059b7..b44d068 100644 --- a/testdata/e2e_test/number_float32.txt +++ b/testdata/e2e_test/number_float32.txt @@ -11,10 +11,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: float32(32) ] diff --git a/testdata/e2e_test/number_float64.txt b/testdata/e2e_test/number_float64.txt index 61f1b2a..2514978 100644 --- a/testdata/e2e_test/number_float64.txt +++ b/testdata/e2e_test/number_float64.txt @@ -11,10 +11,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: float64(64) ] diff --git a/testdata/e2e_test/number_int.txt b/testdata/e2e_test/number_int.txt index 4883ca4..1401196 100644 --- a/testdata/e2e_test/number_int.txt +++ b/testdata/e2e_test/number_int.txt @@ -11,10 +11,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: int(44) ] diff --git a/testdata/e2e_test/number_int32.txt b/testdata/e2e_test/number_int32.txt index 95f3aef..9d9561e 100644 --- a/testdata/e2e_test/number_int32.txt +++ b/testdata/e2e_test/number_int32.txt @@ -11,10 +11,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: int32(32) ] diff --git a/testdata/e2e_test/number_int64.txt b/testdata/e2e_test/number_int64.txt index cc214af..1771d2a 100644 --- a/testdata/e2e_test/number_int64.txt +++ b/testdata/e2e_test/number_int64.txt @@ -11,10 +11,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: int64(64) ] diff --git a/testdata/e2e_test/number_uint64.txt b/testdata/e2e_test/number_uint64.txt index 6d4f9f3..68ac283 100644 --- a/testdata/e2e_test/number_uint64.txt +++ b/testdata/e2e_test/number_uint64.txt @@ -11,10 +11,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: uint64(88) ] diff --git a/testdata/e2e_test/number_uintptr.txt b/testdata/e2e_test/number_uintptr.txt index 93803bf..f37cffa 100644 --- a/testdata/e2e_test/number_uintptr.txt +++ b/testdata/e2e_test/number_uintptr.txt @@ -11,10 +11,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: uintptr(123) ] diff --git a/testdata/e2e_test/pointer_to_struct_of_varying_field_types.txt.txt b/testdata/e2e_test/pointer_to_struct_of_varying_field_types.txt.txt index 4915550..c353d1b 100644 --- a/testdata/e2e_test/pointer_to_struct_of_varying_field_types.txt.txt +++ b/testdata/e2e_test/pointer_to_struct_of_varying_field_types.txt.txt @@ -41,10 +41,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:381 github.com/komuw/kama_test.TestDir.func3 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:381 github.com/komuw/kama_test.TestDir.func3 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: &SomeStruct{ SomeInt: int16(13), diff --git a/testdata/e2e_test/slice_in_a_struct_is_not_compacted.txt b/testdata/e2e_test/slice_in_a_struct_is_not_compacted.txt index 22e138c..bfcdc5d 100644 --- a/testdata/e2e_test/slice_in_a_struct_is_not_compacted.txt +++ b/testdata/e2e_test/slice_in_a_struct_is_not_compacted.txt @@ -13,10 +13,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: someStructWithSlice{ XX: []int{ diff --git a/testdata/e2e_test/slice_of_http_Request_value_structs.txt.txt b/testdata/e2e_test/slice_of_http_Request_value_structs.txt.txt index f7a055c..47a6bb6 100644 --- a/testdata/e2e_test/slice_of_http_Request_value_structs.txt.txt +++ b/testdata/e2e_test/slice_of_http_Request_value_structs.txt.txt @@ -11,10 +11,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:398 github.com/komuw/kama_test.TestDir.func4 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:398 github.com/komuw/kama_test.TestDir.func4 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: []http.Request{ Request{ diff --git a/testdata/e2e_test/slice_on_its_own_is_not_compacted.txt b/testdata/e2e_test/slice_on_its_own_is_not_compacted.txt index 27442c3..be13719 100644 --- a/testdata/e2e_test/slice_on_its_own_is_not_compacted.txt +++ b/testdata/e2e_test/slice_on_its_own_is_not_compacted.txt @@ -11,10 +11,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:268 github.com/komuw/kama_test.TestDir.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: []int{ int(0), diff --git a/testdata/e2e_test/someOne.txt b/testdata/e2e_test/someOne.txt index c69964e..b157195 100644 --- a/testdata/e2e_test/someOne.txt +++ b/testdata/e2e_test/someOne.txt @@ -15,10 +15,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:471 github.com/komuw/kama_test.TestAllAboutInterfaces.func1.1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:471 github.com/komuw/kama_test.TestAllAboutInterfaces.func1.1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: SomeStructWithInterfaces{ AAA: io.Reader(*strings.Reader) &{hello from strings NewReader 0 -1}, diff --git a/testdata/e2e_test/someTwo.txt b/testdata/e2e_test/someTwo.txt index 5744fc1..c85dfa3 100644 --- a/testdata/e2e_test/someTwo.txt +++ b/testdata/e2e_test/someTwo.txt @@ -15,10 +15,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:471 github.com/komuw/kama_test.TestAllAboutInterfaces.func1.1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:471 github.com/komuw/kama_test.TestAllAboutInterfaces.func1.1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: &SomeStructWithInterfaces{ AAA: io.Reader(*strings.Reader) &{hello from strings NewReader 0 -1}, diff --git a/testdata/e2e_test/struct_of_varying_field_types.txt.txt b/testdata/e2e_test/struct_of_varying_field_types.txt.txt index a668075..518e156 100644 --- a/testdata/e2e_test/struct_of_varying_field_types.txt.txt +++ b/testdata/e2e_test/struct_of_varying_field_types.txt.txt @@ -41,10 +41,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/e2e_test.go:325 github.com/komuw/kama_test.TestDir.func2 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/e2e_test.go:325 github.com/komuw/kama_test.TestDir.func2 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: SomeStruct{ SomeInt: int16(13), diff --git a/testdata/kama_test/TestDiff-http_Request.txt b/testdata/kama_test/TestDiff-http_Request.txt index a7c09fa..dfe93ed 100644 --- a/testdata/kama_test/TestDiff-http_Request.txt +++ b/testdata/kama_test/TestDiff-http_Request.txt @@ -55,12 +55,12 @@ thirdParty: yellow yours: red -  /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir -- /home/komu/mystuff/kama/kama.go:161 github.com/komuw/kama.Diff -+ /home/komu/mystuff/kama/kama.go:162 github.com/komuw/kama.Diff -  /home/komu/mystuff/kama/kama_test.go:284 github.com/komuw/kama.TestDiff.func1 -  /usr/local/go/src/testing/testing.go:1689 testing.tRunner -  /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit +  github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir +- github.com/komuw/kama/kama.go:161 github.com/komuw/kama.Diff ++ github.com/komuw/kama/kama.go:162 github.com/komuw/kama.Diff +  github.com/komuw/kama/kama_test.go:284 github.com/komuw/kama.TestDiff.func1 +  testing/testing.go:1689 testing.tRunner +  runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: Request{ - Method: "GET", diff --git a/testdata/kama_test/TestReadmeExamples_http_request.txt b/testdata/kama_test/TestReadmeExamples_http_request.txt index 90a32a7..54ff25e 100644 --- a/testdata/kama_test/TestReadmeExamples_http_request.txt +++ b/testdata/kama_test/TestReadmeExamples_http_request.txt @@ -55,10 +55,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/kama_test.go:244 github.com/komuw/kama.TestReadmeExamples.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/kama_test.go:244 github.com/komuw/kama.TestReadmeExamples.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: &Request{ Method: "GET", diff --git a/testdata/kama_test/http_request_with_stack.txt b/testdata/kama_test/http_request_with_stack.txt index 594e04f..4679bbc 100644 --- a/testdata/kama_test/http_request_with_stack.txt +++ b/testdata/kama_test/http_request_with_stack.txt @@ -55,10 +55,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/kama_test.go:315 github.com/komuw/kama.TestDirWithStack.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/kama_test.go:315 github.com/komuw/kama.TestDirWithStack.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: &Request{ Method: "GET", diff --git a/testdata/vars_test/TestCircularRef-with-NO-cirlce-DoNotShowPrivateFields.txt b/testdata/vars_test/TestCircularRef-with-NO-cirlce-DoNotShowPrivateFields.txt index def60f8..633765f 100644 --- a/testdata/vars_test/TestCircularRef-with-NO-cirlce-DoNotShowPrivateFields.txt +++ b/testdata/vars_test/TestCircularRef-with-NO-cirlce-DoNotShowPrivateFields.txt @@ -13,10 +13,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/vars_test.go:641 github.com/komuw/kama.TestCircularRef.func3 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/vars_test.go:641 github.com/komuw/kama.TestCircularRef.func3 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: &Client{ Public: "PublicName", diff --git a/testdata/vars_test/TestCircularRef-with-NO-cirlce-ShowPrivateFields.txt b/testdata/vars_test/TestCircularRef-with-NO-cirlce-ShowPrivateFields.txt index 82e6a59..4a7f92b 100644 --- a/testdata/vars_test/TestCircularRef-with-NO-cirlce-ShowPrivateFields.txt +++ b/testdata/vars_test/TestCircularRef-with-NO-cirlce-ShowPrivateFields.txt @@ -13,10 +13,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/vars_test.go:639 github.com/komuw/kama.TestCircularRef.func3 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/vars_test.go:639 github.com/komuw/kama.TestCircularRef.func3 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: &Client{ Public: "PublicName", diff --git a/testdata/vars_test/TestCircularRef-with-cirlce-DoNotShowPrivateFields.txt b/testdata/vars_test/TestCircularRef-with-cirlce-DoNotShowPrivateFields.txt index 6d62c79..d8152b2 100644 --- a/testdata/vars_test/TestCircularRef-with-cirlce-DoNotShowPrivateFields.txt +++ b/testdata/vars_test/TestCircularRef-with-cirlce-DoNotShowPrivateFields.txt @@ -13,10 +13,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/vars_test.go:609 github.com/komuw/kama.TestCircularRef.func2 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/vars_test.go:609 github.com/komuw/kama.TestCircularRef.func2 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: &Client{ Public: "PublicName", diff --git a/testdata/vars_test/TestCircularRef-with-cirlce-ShowPrivateFields.txt b/testdata/vars_test/TestCircularRef-with-cirlce-ShowPrivateFields.txt index e4ae6c4..30619b7 100644 --- a/testdata/vars_test/TestCircularRef-with-cirlce-ShowPrivateFields.txt +++ b/testdata/vars_test/TestCircularRef-with-cirlce-ShowPrivateFields.txt @@ -13,10 +13,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/vars_test.go:607 github.com/komuw/kama.TestCircularRef.func2 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/vars_test.go:607 github.com/komuw/kama.TestCircularRef.func2 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: &Client{ Public: "PublicName", diff --git a/testdata/vars_test/TestPublicPrivate-custom-DoNotShowPrivateFields.txt b/testdata/vars_test/TestPublicPrivate-custom-DoNotShowPrivateFields.txt index 8013c92..0303cc3 100644 --- a/testdata/vars_test/TestPublicPrivate-custom-DoNotShowPrivateFields.txt +++ b/testdata/vars_test/TestPublicPrivate-custom-DoNotShowPrivateFields.txt @@ -16,10 +16,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/vars_test.go:523 github.com/komuw/kama.TestPublicPrivate.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/vars_test.go:523 github.com/komuw/kama.TestPublicPrivate.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: SomeStruct{ AAA: io.Reader(*strings.Reader) &{hello from strings NewReader 0 -1}, diff --git a/testdata/vars_test/TestPublicPrivate-custom-ShowPrivateFields.txt b/testdata/vars_test/TestPublicPrivate-custom-ShowPrivateFields.txt index 7c146a4..e74ded3 100644 --- a/testdata/vars_test/TestPublicPrivate-custom-ShowPrivateFields.txt +++ b/testdata/vars_test/TestPublicPrivate-custom-ShowPrivateFields.txt @@ -16,10 +16,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/vars_test.go:521 github.com/komuw/kama.TestPublicPrivate.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/vars_test.go:521 github.com/komuw/kama.TestPublicPrivate.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: SomeStruct{ AAA: io.Reader(*strings.Reader) &{hello from strings NewReader 0 -1}, diff --git a/testdata/vars_test/TestPublicPrivate-custom-default.txt b/testdata/vars_test/TestPublicPrivate-custom-default.txt index 2e08615..4c1b9e3 100644 --- a/testdata/vars_test/TestPublicPrivate-custom-default.txt +++ b/testdata/vars_test/TestPublicPrivate-custom-default.txt @@ -16,10 +16,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/vars_test.go:519 github.com/komuw/kama.TestPublicPrivate.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/vars_test.go:519 github.com/komuw/kama.TestPublicPrivate.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: SomeStruct{ AAA: io.Reader(*strings.Reader) &{hello from strings NewReader 0 -1}, diff --git a/testdata/vars_test/TestPublicPrivate-stdlib-DoNotShowPrivateFields.txt b/testdata/vars_test/TestPublicPrivate-stdlib-DoNotShowPrivateFields.txt index bdc4332..fdaa080 100644 --- a/testdata/vars_test/TestPublicPrivate-stdlib-DoNotShowPrivateFields.txt +++ b/testdata/vars_test/TestPublicPrivate-stdlib-DoNotShowPrivateFields.txt @@ -55,10 +55,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/vars_test.go:555 github.com/komuw/kama.TestPublicPrivate.func2 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/vars_test.go:555 github.com/komuw/kama.TestPublicPrivate.func2 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: Request{ Method: "Hello", diff --git a/testdata/vars_test/TestPublicPrivate-stdlib-ShowPrivateFields.txt b/testdata/vars_test/TestPublicPrivate-stdlib-ShowPrivateFields.txt index 575d11d..43e04ab 100644 --- a/testdata/vars_test/TestPublicPrivate-stdlib-ShowPrivateFields.txt +++ b/testdata/vars_test/TestPublicPrivate-stdlib-ShowPrivateFields.txt @@ -55,10 +55,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/vars_test.go:553 github.com/komuw/kama.TestPublicPrivate.func2 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/vars_test.go:553 github.com/komuw/kama.TestPublicPrivate.func2 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: Request{ Method: "Hello", diff --git a/testdata/vars_test/TestPublicPrivate-stdlib-default.txt b/testdata/vars_test/TestPublicPrivate-stdlib-default.txt index e5c6847..271f488 100644 --- a/testdata/vars_test/TestPublicPrivate-stdlib-default.txt +++ b/testdata/vars_test/TestPublicPrivate-stdlib-default.txt @@ -55,10 +55,10 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/kama.go:129 github.com/komuw/kama.Dir - /home/komu/mystuff/kama/vars_test.go:551 github.com/komuw/kama.TestPublicPrivate.func2 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/kama.go:129 github.com/komuw/kama.Dir + github.com/komuw/kama/vars_test.go:551 github.com/komuw/kama.TestPublicPrivate.func2 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: Request{ Method: "Hello", diff --git a/testdata/vars_test/big_array.txt b/testdata/vars_test/big_array.txt index 5304f0e..c602077 100644 --- a/testdata/vars_test/big_array.txt +++ b/testdata/vars_test/big_array.txt @@ -11,9 +11,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: [10000]int{ int(0), diff --git a/testdata/vars_test/big_chan.txt b/testdata/vars_test/big_chan.txt index c855200..fa236f3 100644 --- a/testdata/vars_test/big_chan.txt +++ b/testdata/vars_test/big_chan.txt @@ -11,9 +11,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: chan int (len=10000, cap=10000) ] diff --git a/testdata/vars_test/big_map.txt b/testdata/vars_test/big_map.txt index ef398f4..066da1b 100644 --- a/testdata/vars_test/big_map.txt +++ b/testdata/vars_test/big_map.txt @@ -11,9 +11,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: map[int]string{ int(0): "0", diff --git a/testdata/vars_test/big_slice.txt b/testdata/vars_test/big_slice.txt index c2c35a1..e05ca05 100644 --- a/testdata/vars_test/big_slice.txt +++ b/testdata/vars_test/big_slice.txt @@ -11,9 +11,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: []int{ int(0), diff --git a/testdata/vars_test/big_string.txt b/testdata/vars_test/big_string.txt index f5f92c8..317e1a0 100644 --- a/testdata/vars_test/big_string.txt +++ b/testdata/vars_test/big_string.txt @@ -11,9 +11,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: "AT last the sleepy atmosphere was stirred—and vigorously: the murder trial came on in the ...<3342 more redacted>.. ] diff --git a/testdata/vars_test/context_inside_struct.txt b/testdata/vars_test/context_inside_struct.txt index f3fcffc..d753478 100644 --- a/testdata/vars_test/context_inside_struct.txt +++ b/testdata/vars_test/context_inside_struct.txt @@ -15,9 +15,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:398 github.com/komuw/kama.TestContexts.func2 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:398 github.com/komuw/kama.TestContexts.func2 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: StructWithContext{ Name: "John", diff --git a/testdata/vars_test/custom_context.txt b/testdata/vars_test/custom_context.txt index a214851..c9f19d6 100644 --- a/testdata/vars_test/custom_context.txt +++ b/testdata/vars_test/custom_context.txt @@ -16,9 +16,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:398 github.com/komuw/kama.TestContexts.func2 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:398 github.com/komuw/kama.TestContexts.func2 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: customContext{ } diff --git a/testdata/vars_test/default_config.txt b/testdata/vars_test/default_config.txt index ccfac29..576dca4 100644 --- a/testdata/vars_test/default_config.txt +++ b/testdata/vars_test/default_config.txt @@ -16,9 +16,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:469 github.com/komuw/kama.TestLong.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:469 github.com/komuw/kama.TestLong.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: Hey{ BigSlice: []int{ diff --git a/testdata/vars_test/distinct_type.txt b/testdata/vars_test/distinct_type.txt index b9f1515..dbae340 100644 --- a/testdata/vars_test/distinct_type.txt +++ b/testdata/vars_test/distinct_type.txt @@ -13,9 +13,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: kama.customerID(9) ] diff --git a/testdata/vars_test/embedded_struct_with_tags.txt b/testdata/vars_test/embedded_struct_with_tags.txt index 330b888..0a97759 100644 --- a/testdata/vars_test/embedded_struct_with_tags.txt +++ b/testdata/vars_test/embedded_struct_with_tags.txt @@ -13,9 +13,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: Hey{ Another: { diff --git a/testdata/vars_test/function.txt b/testdata/vars_test/function.txt index 03d3b5f..bce8264 100644 --- a/testdata/vars_test/function.txt +++ b/testdata/vars_test/function.txt @@ -11,9 +11,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: func(string, int) (string, error) ] diff --git a/testdata/vars_test/function_variable.txt b/testdata/vars_test/function_variable.txt index 03d3b5f..bce8264 100644 --- a/testdata/vars_test/function_variable.txt +++ b/testdata/vars_test/function_variable.txt @@ -11,9 +11,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: func(string, int) (string, error) ] diff --git a/testdata/vars_test/maxLength_big-string_config.txt b/testdata/vars_test/maxLength_big-string_config.txt index 8d70bc0..13a09b2 100644 --- a/testdata/vars_test/maxLength_big-string_config.txt +++ b/testdata/vars_test/maxLength_big-string_config.txt @@ -11,9 +11,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:469 github.com/komuw/kama.TestLong.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:469 github.com/komuw/kama.TestLong.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: "AT last the sleepy atmosphere was stirred—and vigorously: the murder trial came on in the court. It became the absorbing topic of village talk immediately. Tom could not get away from it. Every reference to the murder sent a shudder to his heart, for his troubled conscience and fears almost persuaded him that these remarks were put forth in his hearing as “feelers”; he did not see how he could be suspected of knowing anything about the murder, but still he could not be comfortable in the midst of this gossip. It kept him in a cold shiver all the time. He took Huck to a lonely place to have a talk with him. It would be some relief to unseal his tongue for a little while; to divide his burden of distress with another sufferer. Moreover, he wanted to assure himself that Huck had remained discreet.\n“Huck, have you ever told anybody about—that?”\n“'Bout what?”\n“You know what.”\n“Oh—'course I haven't.”\n“Never a word?”\n“Never a solitary word, so help me. What makes you ask?”\n“Well, I was afeard.”\n“Why, Tom Sawyer, we wouldn't be alive two days if that got found out. You know that.”\nTom felt more comfortable. After a pause:\n“Huck, they couldn't anybody get you to tell, could they?”\n“Get me to tell? Why, if I wanted that halfbreed devil to drownd me they could get me to tell. They ain't no different way.”\n“Well, that's all right, then. I reckon we're safe as long as we keep mum. But let's swear again, anyway. It's more surer.”\n“I'm agreed.”\nSo they swore again with dread solemnities.\n“What is the talk around, Huck? I've heard a power of it.”\n“Talk? Well, it's just Muff Potter, Muff Potter, Muff Potter all the time. It keeps me in a sweat, constant, so's I want to hide som'ers.”\n“That's just the same way they go on round me. I reckon he's a goner. Don't you feel sorry for him, sometimes?”\n“Most always—most always. He ain't no account; but then he hain't ever done anything to hurt anybody. Just fishes a little, to get money to get drunk on—and loafs around considerable; but lord, we all do that—leastways most of us—preachers and such like. But he's kind of good—he give me half a fish, once, when there warn't enough for two; and lots of times he's kind of stood by me when I was out of luck.”\n“Well, he's mended kites for me, Huck, and knitted hooks on to my line. I wish we could get him out of there.”\n“My! we couldn't get him out, Tom. And besides, 'twouldn't do any good; they'd ketch him again.”\n“Yes—so they would. But I hate to hear 'em abuse him so like the dickens when he never done—that.”\n“I do too, Tom. Lord, I hear 'em say he's the bloodiest looking villain in this country, and they wonder he wasn't ever hung before.”\n“Yes, they talk like that, all the time. I've heard 'em say that if he was to get free they'd lynch him.”\n“And they'd do it, too.”\nThe boys had a long talk, but it brought them little comfort. As the twilight drew on, they found themselves hanging about the neighborhood of the little isolated jail, perhaps with an undefined hope that something would happen that might clear away their difficulties. But nothing happened; there seemed to be no angels or fairies interested in this luckless captive.\nThe boys did as they had often done before—went to the cell grating and gave Potter some tobacco and matches. He was on the ground floor and there were no guards." ] diff --git a/testdata/vars_test/maxLength_config.txt b/testdata/vars_test/maxLength_config.txt index 4b912b0..240a73e 100644 --- a/testdata/vars_test/maxLength_config.txt +++ b/testdata/vars_test/maxLength_config.txt @@ -16,9 +16,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:469 github.com/komuw/kama.TestLong.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:469 github.com/komuw/kama.TestLong.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: Hey{ BigSlice: []int{ diff --git a/testdata/vars_test/maxLength_empty-string_config.txt b/testdata/vars_test/maxLength_empty-string_config.txt index 767903a..6eead88 100644 --- a/testdata/vars_test/maxLength_empty-string_config.txt +++ b/testdata/vars_test/maxLength_empty-string_config.txt @@ -11,9 +11,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:469 github.com/komuw/kama.TestLong.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:469 github.com/komuw/kama.TestLong.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: "" ] diff --git a/testdata/vars_test/nil_map.txt b/testdata/vars_test/nil_map.txt index 4728b1f..d775ad7 100644 --- a/testdata/vars_test/nil_map.txt +++ b/testdata/vars_test/nil_map.txt @@ -11,9 +11,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:306 github.com/komuw/kama.TestSliceMap.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:306 github.com/komuw/kama.TestSliceMap.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: map[string]int{(nil)} ] diff --git a/testdata/vars_test/nil_slice.txt b/testdata/vars_test/nil_slice.txt index 039bbb2..a5588b6 100644 --- a/testdata/vars_test/nil_slice.txt +++ b/testdata/vars_test/nil_slice.txt @@ -11,9 +11,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:306 github.com/komuw/kama.TestSliceMap.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:306 github.com/komuw/kama.TestSliceMap.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: []string{(nil)} ] diff --git a/testdata/vars_test/no_config.txt b/testdata/vars_test/no_config.txt index 121c7bc..ad8e19c 100644 --- a/testdata/vars_test/no_config.txt +++ b/testdata/vars_test/no_config.txt @@ -16,9 +16,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:469 github.com/komuw/kama.TestLong.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:469 github.com/komuw/kama.TestLong.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: Hey{ BigSlice: []int{ diff --git a/testdata/vars_test/no_element_map.txt b/testdata/vars_test/no_element_map.txt index cfa318c..407062e 100644 --- a/testdata/vars_test/no_element_map.txt +++ b/testdata/vars_test/no_element_map.txt @@ -11,9 +11,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:306 github.com/komuw/kama.TestSliceMap.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:306 github.com/komuw/kama.TestSliceMap.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: map[string]int{} ] diff --git a/testdata/vars_test/no_element_slice.txt b/testdata/vars_test/no_element_slice.txt index 54180c8..fc7f2ce 100644 --- a/testdata/vars_test/no_element_slice.txt +++ b/testdata/vars_test/no_element_slice.txt @@ -11,9 +11,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:306 github.com/komuw/kama.TestSliceMap.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:306 github.com/komuw/kama.TestSliceMap.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: []string{} ] diff --git a/testdata/vars_test/one_element_map.txt b/testdata/vars_test/one_element_map.txt index db648be..693beb2 100644 --- a/testdata/vars_test/one_element_map.txt +++ b/testdata/vars_test/one_element_map.txt @@ -11,9 +11,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:306 github.com/komuw/kama.TestSliceMap.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:306 github.com/komuw/kama.TestSliceMap.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: map[string]int{ "o": int(1), diff --git a/testdata/vars_test/one_element_slice.txt b/testdata/vars_test/one_element_slice.txt index d0c62aa..0771437 100644 --- a/testdata/vars_test/one_element_slice.txt +++ b/testdata/vars_test/one_element_slice.txt @@ -11,9 +11,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:306 github.com/komuw/kama.TestSliceMap.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:306 github.com/komuw/kama.TestSliceMap.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: []string{ "hello", diff --git a/testdata/vars_test/pointer_struct.txt b/testdata/vars_test/pointer_struct.txt index 9d60311..8c3e678 100644 --- a/testdata/vars_test/pointer_struct.txt +++ b/testdata/vars_test/pointer_struct.txt @@ -20,9 +20,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: &Person{ Name: "Jane", diff --git a/testdata/vars_test/pointer_struct_of_http.Request.txt b/testdata/vars_test/pointer_struct_of_http.Request.txt index 7f9891c..30249bf 100644 --- a/testdata/vars_test/pointer_struct_of_http.Request.txt +++ b/testdata/vars_test/pointer_struct_of_http.Request.txt @@ -55,9 +55,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:248 github.com/komuw/kama.TestStdlibVariables.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:248 github.com/komuw/kama.TestStdlibVariables.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: &Request{ Method: "", diff --git a/testdata/vars_test/pointer_struct_with_slice_field.txt b/testdata/vars_test/pointer_struct_with_slice_field.txt index 0ba92b9..e4be4f2 100644 --- a/testdata/vars_test/pointer_struct_with_slice_field.txt +++ b/testdata/vars_test/pointer_struct_with_slice_field.txt @@ -14,9 +14,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: &SomeStructWIthSlice{ Name: "HelloPointery", diff --git a/testdata/vars_test/stdlib_context_Background.txt b/testdata/vars_test/stdlib_context_Background.txt index 5df60f8..dda5987 100644 --- a/testdata/vars_test/stdlib_context_Background.txt +++ b/testdata/vars_test/stdlib_context_Background.txt @@ -17,9 +17,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:398 github.com/komuw/kama.TestContexts.func2 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:398 github.com/komuw/kama.TestContexts.func2 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: context.Background ] diff --git a/testdata/vars_test/stdlib_context_TODO.txt b/testdata/vars_test/stdlib_context_TODO.txt index d0e1723..29800fd 100644 --- a/testdata/vars_test/stdlib_context_TODO.txt +++ b/testdata/vars_test/stdlib_context_TODO.txt @@ -17,9 +17,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:398 github.com/komuw/kama.TestContexts.func2 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:398 github.com/komuw/kama.TestContexts.func2 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: context.TODO ] diff --git a/testdata/vars_test/stdlib_context_WithCancel.txt b/testdata/vars_test/stdlib_context_WithCancel.txt index 1d757ab..1f9433f 100644 --- a/testdata/vars_test/stdlib_context_WithCancel.txt +++ b/testdata/vars_test/stdlib_context_WithCancel.txt @@ -19,9 +19,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:398 github.com/komuw/kama.TestContexts.func2 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:398 github.com/komuw/kama.TestContexts.func2 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: context.Background.WithCancel ] diff --git a/testdata/vars_test/stdlib_context_WithValue.txt b/testdata/vars_test/stdlib_context_WithValue.txt index 96334c4..d84524d 100644 --- a/testdata/vars_test/stdlib_context_WithValue.txt +++ b/testdata/vars_test/stdlib_context_WithValue.txt @@ -19,9 +19,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:398 github.com/komuw/kama.TestContexts.func2 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:398 github.com/komuw/kama.TestContexts.func2 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: context.TODO.WithValue(type kama.myContextKeyType, val OKAYY) ] diff --git a/testdata/vars_test/stdlib_context_encapsulated.txt b/testdata/vars_test/stdlib_context_encapsulated.txt index a3a35c6..bfeee44 100644 --- a/testdata/vars_test/stdlib_context_encapsulated.txt +++ b/testdata/vars_test/stdlib_context_encapsulated.txt @@ -19,9 +19,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:398 github.com/komuw/kama.TestContexts.func2 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:398 github.com/komuw/kama.TestContexts.func2 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: context.Background.WithCancel.WithValue(type kama.myContextKeyType, val ThisIsSomeContextValue) ] diff --git a/testdata/vars_test/struct_with_tags.txt b/testdata/vars_test/struct_with_tags.txt index 3e839ec..eefd05d 100644 --- a/testdata/vars_test/struct_with_tags.txt +++ b/testdata/vars_test/struct_with_tags.txt @@ -14,9 +14,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: StructWithTags{ Allowed: false, diff --git a/testdata/vars_test/two_element_map.txt b/testdata/vars_test/two_element_map.txt index 37e9e3e..8032f95 100644 --- a/testdata/vars_test/two_element_map.txt +++ b/testdata/vars_test/two_element_map.txt @@ -11,9 +11,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:306 github.com/komuw/kama.TestSliceMap.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:306 github.com/komuw/kama.TestSliceMap.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: map[string]int{ "o": int(1), diff --git a/testdata/vars_test/two_element_slice.txt b/testdata/vars_test/two_element_slice.txt index 967fda4..1275781 100644 --- a/testdata/vars_test/two_element_slice.txt +++ b/testdata/vars_test/two_element_slice.txt @@ -11,9 +11,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:306 github.com/komuw/kama.TestSliceMap.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:306 github.com/komuw/kama.TestSliceMap.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: []string{ "one", diff --git a/testdata/vars_test/value_struct.txt b/testdata/vars_test/value_struct.txt index e85c960..ed3bad9 100644 --- a/testdata/vars_test/value_struct.txt +++ b/testdata/vars_test/value_struct.txt @@ -20,9 +20,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: Person{ Name: "John", diff --git a/testdata/vars_test/value_struct_of_http.Request.txt b/testdata/vars_test/value_struct_of_http.Request.txt index b579079..08b4a9f 100644 --- a/testdata/vars_test/value_struct_of_http.Request.txt +++ b/testdata/vars_test/value_struct_of_http.Request.txt @@ -55,9 +55,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:248 github.com/komuw/kama.TestStdlibVariables.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:248 github.com/komuw/kama.TestStdlibVariables.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: Request{ Method: "", diff --git a/testdata/vars_test/value_struct_with_slice_field.txt b/testdata/vars_test/value_struct_with_slice_field.txt index bb37385..58249f9 100644 --- a/testdata/vars_test/value_struct_with_slice_field.txt +++ b/testdata/vars_test/value_struct_with_slice_field.txt @@ -14,9 +14,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: SomeStructWIthSlice{ Name: "Hello", diff --git a/testdata/vars_test/zero_value_pointer.txt b/testdata/vars_test/zero_value_pointer.txt index db7df36..fbef5c8 100644 --- a/testdata/vars_test/zero_value_pointer.txt +++ b/testdata/vars_test/zero_value_pointer.txt @@ -11,9 +11,9 @@ STACK_TRACE: [ thirdParty: yellow yours: red - /home/komu/mystuff/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 - /usr/local/go/src/testing/testing.go:1689 testing.tRunner - /usr/local/go/src/runtime/asm_amd64.s:1695 runtime.goexit + github.com/komuw/kama/vars_test.go:217 github.com/komuw/kama.TestBasicVariables.func1 + testing/testing.go:1689 testing.tRunner + runtime/asm_amd64.s:1695 runtime.goexit ] SNIPPET: *http.Request(nil) ]