File size: 731 Bytes
f61bac1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | # SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2022-2025, The OpenROAD Authors
load("//test:regression.bzl", "regression_test")
package(features = ["layering_check"])
TESTS = [
"basic",
]
filegroup(
name = "test_resources",
# overly broad glob, could be refined later, but
# symlinks are cheap and OpenROAD binary changes, the common
# use case is that all tests have to be re-run.
srcs = glob(
["**/*"],
exclude = [
test + "." + ext
for test in TESTS
for ext in [
"tcl",
"py",
]
],
),
)
[regression_test(
name = test_name,
data = [":test_resources"],
) for test_name in TESTS]
|