blob: 48ded42a2fd828320401db99b7c678422e2b46de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
GO_LIBRARY()
SRCS(
doc.go
errorf.go
forward.go
mode.go
new.go
sentinel.go
stacktrace.go
)
GO_TEST_SRCS(
benchmark_test.go
errorf_formatting_with_error_test.go
errorf_formatting_with_std_error_test.go
errorf_formatting_without_error_test.go
errorf_multiple_errors_test.go
new_formatting_test.go
sentinel_test.go
sentinel_with_stack_formatting_with_colon_test.go
sentinel_with_stack_formatting_without_colon_test.go
sentinel_wrap_formatting_with_colon_test.go
sentinel_wrap_formatting_without_colon_test.go
sentinel_wrap_new_formatting_test.go
)
END()
RECURSE(
assertxerrors
benchxerrors
gotest
internal
multierr
)
|