2020-04-22 17:38:25 +02:00
|
|
|
# Copyright 2020 MongoDB Inc.
|
2020-01-07 19:48:42 +01:00
|
|
|
#
|
2020-04-22 17:38:25 +02:00
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
# a copy of this software and associated documentation files (the
|
|
|
|
# "Software"), to deal in the Software without restriction, including
|
|
|
|
# without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
# permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
# the following conditions:
|
2020-01-07 19:48:42 +01:00
|
|
|
#
|
2020-04-22 17:38:25 +02:00
|
|
|
# The above copyright notice and this permission notice shall be included
|
|
|
|
# in all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
|
|
|
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
2020-01-07 19:48:42 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
"""
|
|
|
|
Pseudo-builders for building and registering benchmarks.
|
2018-01-27 17:37:24 +01:00
|
|
|
"""
|
|
|
|
from SCons.Script import Action
|
|
|
|
|
2020-01-07 19:48:42 +01:00
|
|
|
|
2018-01-27 17:37:24 +01:00
|
|
|
def exists(env):
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def build_benchmark(env, target, source, **kwargs):
|
|
|
|
|
|
|
|
bmEnv = env.Clone()
|
2020-01-07 19:48:42 +01:00
|
|
|
bmEnv.InjectThirdParty(libraries=["benchmark"])
|
2018-01-27 17:37:24 +01:00
|
|
|
|
2020-01-07 19:48:42 +01:00
|
|
|
if bmEnv.TargetOSIs("windows"):
|
2018-01-27 17:37:24 +01:00
|
|
|
bmEnv.Append(LIBS=["ShLwApi.lib"])
|
|
|
|
|
2020-01-07 19:48:42 +01:00
|
|
|
libdeps = kwargs.get("LIBDEPS", [])
|
|
|
|
libdeps.append("$BUILD_DIR/mongo/unittest/benchmark_main")
|
2018-01-27 17:37:24 +01:00
|
|
|
|
2020-01-07 19:48:42 +01:00
|
|
|
kwargs["LIBDEPS"] = libdeps
|
|
|
|
benchmark_test_components = {"tests", "benchmarks"}
|
2020-01-06 21:47:18 +01:00
|
|
|
primary_component = kwargs.get("AIB_COMPONENT", env.get("AIB_COMPONENT", ""))
|
|
|
|
if primary_component and not primary_component.endswith("-benchmark"):
|
2020-01-07 19:48:42 +01:00
|
|
|
kwargs["AIB_COMPONENT"] += "-benchmark"
|
2020-01-06 21:47:18 +01:00
|
|
|
elif primary_component:
|
|
|
|
kwargs["AIB_COMPONENT"] = primary_component
|
|
|
|
else:
|
|
|
|
kwargs["AIB_COMPONENT"] = "benchmarks"
|
|
|
|
benchmark_test_components = {"tests"}
|
2019-09-10 16:12:25 +02:00
|
|
|
|
2020-01-07 19:48:42 +01:00
|
|
|
if "AIB_COMPONENTS_EXTRA" in kwargs:
|
|
|
|
benchmark_test_components = set(kwargs["AIB_COMPONENTS_EXTRA"]).union(
|
|
|
|
benchmark_test_components
|
|
|
|
)
|
2019-09-10 16:12:25 +02:00
|
|
|
|
2020-01-07 19:48:42 +01:00
|
|
|
kwargs["AIB_COMPONENTS_EXTRA"] = benchmark_test_components
|
2019-09-10 16:12:25 +02:00
|
|
|
|
2018-01-27 17:37:24 +01:00
|
|
|
result = bmEnv.Program(target, source, **kwargs)
|
2020-01-07 19:48:42 +01:00
|
|
|
bmEnv.RegisterTest("$BENCHMARK_LIST", result[0])
|
|
|
|
bmEnv.Alias("$BENCHMARK_ALIAS", result)
|
2019-08-07 00:42:44 +02:00
|
|
|
|
2018-01-27 17:37:24 +01:00
|
|
|
return result
|
|
|
|
|
2019-02-19 16:50:57 +01:00
|
|
|
|
2018-01-27 17:37:24 +01:00
|
|
|
def generate(env):
|
2020-01-07 19:48:42 +01:00
|
|
|
env.TestList("$BENCHMARK_LIST", source=[])
|
|
|
|
env.AddMethod(build_benchmark, "Benchmark")
|
|
|
|
env.Alias("$BENCHMARK_ALIAS", "$BENCHMARK_LIST")
|