blob: a615e82f3aa16dabe9ff5a0437368a7d090dd8ce (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
GO_LIBRARY()
SRCS(
allocs.go
benchmark.go
cover.go
example.go
fuzz.go
match.go
newcover.go
run_example.go
testing.go
)
GO_TEST_SRCS(
export_test.go
helper_test.go
helperfuncs_test.go
match_test.go
sub_test.go
)
GO_XTEST_SRCS(
allocs_test.go
benchmark_test.go
flag_test.go
panic_test.go
testing_test.go
)
IF (OS_LINUX)
SRCS(
testing_other.go
)
ENDIF()
IF (OS_DARWIN)
SRCS(
testing_other.go
)
ENDIF()
IF (OS_WINDOWS)
SRCS(
testing_windows.go
)
ENDIF()
END()
RECURSE(
fstest
internal
iotest
quick
slogtest
)
|