Merge branch 'stable-2.16'
* stable-2.16: Allow dash in name of junit_tests rule Change-Id: I7a03ca69ab80b7c53af3cde4cc5125a3a6b620ce
This commit is contained in:
commit
cbbdb7108d
@ -72,7 +72,7 @@ POST_JDK8_OPTS = [
|
||||
]
|
||||
|
||||
def junit_tests(name, srcs, **kwargs):
|
||||
s_name = name + "TestSuite"
|
||||
s_name = name.replace("-", "_") + "TestSuite"
|
||||
_GenSuite(
|
||||
name = s_name,
|
||||
srcs = srcs,
|
||||
|
Loading…
x
Reference in New Issue
Block a user