sapling/CMake/eden-config.py.in
Katie Mancini 8e1a30a2a9 nfs: run most integration tests on edenfs
Summary:
Currently we have limited test coverage of the NFS code. Let's start running
our integration tests on NFS mounts. We already duplicate tests to run them on
both Git and Hg repos using a python decorator. We can update this decorator to
run a copy of tests on an nfs mount.

This covers most of the tests, but a few tests do not use this decorator. See next
change.

Note some tests are currently broken, so I am using the same skip list functionality
we use for windows so we use a uniform framework.

Reviewed By: xavierd

Differential Revision: D27874662

fbshipit-source-id: c7d425830b691e395b5228d0e0f797f67987b4ec
2021-04-23 13:30:17 -07:00

24 lines
655 B
Python

#!/usr/bin/env python3
#
# Copyright (c) 2020-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree. An additional grant
# of patent rights can be found in the PATENTS file in the same directory.
#
"""
This file provides access to build-time configuration data for EdenFS.
"""
PACKAGE_NAME = "@PROJECT_NAME@"
VERSION = "@EDEN_VERSION@"
RELEASE = "@EDEN_RELEASE@"
BUILD_REVISION = "@EDEN_BUILD_REVISION@"
BUILD_TIME_UNIX = @EDEN_BUILD_TIME_UNIX@
BUILD_FLAVOR = "CMake"
HAVE_GIT = @EDEN_HAVE_GIT_PY@
HAVE_NFS = @EDEN_HAVE_NFS_PY@