blob: e39914b631bd45a284db08639be6a7600c35e8ee (
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()
LICENSE(BSD-3-Clause)
SRCS(
adaptor.go
doc.go
errors.go
format.go
frame.go
into.go
must.go
trace.go
wrap.go
)
GO_TEST_SRCS(
bench_test.go
cause_test.go
must_test.go
)
GO_XTEST_SRCS(
errors_test.go
example_As_test.go
example_FormatError_test.go
example_Into_test.go
example_Must_test.go
example_test.go
format_test.go
wrap_test.go
)
END()
RECURSE(gotest)
|