2024-02-28 16:49:22 +01:00
|
|
|
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
#
|
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
#
|
|
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
|
|
# information regarding copyright ownership.
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
|
|
|
# pylint: disable=import-error
|
2024-04-16 15:13:53 +03:00
|
|
|
from .build import BUILD_VARS, SYSTEM_TEST_DIR_GIT_PATH # type: ignore
|
2024-02-28 16:49:22 +01:00
|
|
|
|
|
|
|
# pylint: enable=import-error
|
|
|
|
|
|
|
|
|
|
|
|
DIR_VARS = {
|
2024-04-16 15:13:53 +03:00
|
|
|
"builddir": f"{BUILD_VARS['TOP_BUILDDIR']}/{SYSTEM_TEST_DIR_GIT_PATH}",
|
|
|
|
"srcdir": f"{BUILD_VARS['TOP_SRCDIR']}/{SYSTEM_TEST_DIR_GIT_PATH}",
|
2024-02-28 16:49:22 +01:00
|
|
|
"SYSTESTDIR": None,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def set_system_test_name(name: str):
|
|
|
|
DIR_VARS["SYSTESTDIR"] = name
|
|
|
|
os.environ["SYSTESTDIR"] = name
|