summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build/ymake.core.conf4
1 files changed, 4 insertions, 0 deletions
diff --git a/build/ymake.core.conf b/build/ymake.core.conf
index a88d197a61a..27b63dec0a3 100644
--- a/build/ymake.core.conf
+++ b/build/ymake.core.conf
@@ -8409,19 +8409,23 @@ macro _GO_SRCS(FILES...) {
# tag:go-specific
_GO_TEST_SRCS_VALUE=
+GO_HAS_INTERNAL_TESTS=no
### @usage: GO_TEST_SRCS(Files...)
### .go sources for internal tests of a module
macro GO_TEST_SRCS(FILES...) {
GO_FAKE_OUTPUT($FILES)
+ SET(GO_HAS_INTERNAL_TESTS yes)
SET_APPEND(_GO_TEST_SRCS_VALUE $FILES)
}
# tag:go-specific
_GO_XTEST_SRCS_VALUE=
+GO_HAS_EXTERNAL_TESTS=no
### @usage: GO_XTEST_SRCS(Files...)
### .go sources for external tests of a module
macro GO_XTEST_SRCS(FILES...) {
GO_FAKE_OUTPUT($FILES)
+ SET(GO_HAS_EXTERNAL_TESTS yes)
SET_APPEND(_GO_XTEST_SRCS_VALUE $FILES)
}