mirror of
https://github.com/facebook/sapling.git
synced 2024-12-26 06:21:48 +03:00
8ce111ef53
Summary: Add initial support for building and running some of the integration tests with CMake. For now this just runs the tests from basic_test.py, just to confirm that most of the framework code works in CMake-based builds. Many of the other tests should also work as well, but a few of them we may want to disable for CMake-based builds. e.g., a couple of the tests depend on hypothesis, and we would need to include hypothesis as a dependency. Some of the tests that use systemd might also require a little more work to get working. Reviewed By: fanzeyi Differential Revision: D17659026 fbshipit-source-id: 67420fda9e1021a0cddee2d385fd21e34fb2fd70
11 lines
280 B
CMake
11 lines
280 B
CMake
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
#
|
|
# This software may be used and distributed according to the terms of the
|
|
# GNU General Public License version 2.
|
|
|
|
file(GLOB TEST_SUPPORT_SRCS "*.py")
|
|
add_fb_python_library(
|
|
eden_test_support
|
|
SOURCES ${TEST_SUPPORT_SRCS}
|
|
)
|