We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 453711a commit 8345530Copy full SHA for 8345530
build.py
@@ -32,6 +32,9 @@ def main():
32
help="The root of build directory. If unset, a temporary directory will be used.",
33
default="",
34
)
35
+ parser.add_argument(
36
+ "--enable_test", default=False, help="Enable all tests", action="store_true"
37
+ )
38
parser.add_argument(
39
"--enable_unit_test",
40
default=False,
@@ -61,6 +64,10 @@ def main():
61
64
"--vcpkg_root must point to a directory. Install from https://vcpkg.io if necessary."
62
65
63
66
67
+ if args.enable_test: # For backwards compat
68
+ args.enable_unit_test = True
69
+ args.enable_integration_test = True
70
+
71
source_dir = os.path.dirname(os.path.realpath(__file__))
72
os.chdir(get_build_root(args.build_root))
73
configure_args = [
0 commit comments