blob: 1ce0ae3de9fed946793b6c7633ed1fa9fcd0b2e7 (
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
|
GO_LIBRARY()
LICENSE(MIT)
VERSION(v2.22.0+incompatible)
# We disable all tests, because all tests rely on 'testing' being
# imported in functions_test.go
# However, functions_tests.go has a test with random(!) generator
# and it is, of course, flaky. So we have to comment it, and
# because of that we have to comment them all :(
SRCS(
crypto.go
date.go
defaults.go
dict.go
doc.go
functions.go
list.go
network.go
numeric.go
reflect.go
regex.go
semver.go
strings.go
url.go
)
GO_TEST_SRCS(
# crypto_test.go
# date_test.go
# defaults_test.go
# dict_test.go
# example_test.go
# flow_control_test.go
# functions_test.go
# issue_188_test.go
# list_test.go
# network_test.go
# numeric_test.go
# reflect_test.go
# regex_test.go
# semver_test.go
# strings_test.go
# url_test.go
)
END()
RECURSE(
gotest
)
|