SAIFIINDUSTRIES's picture
Add batch 1 (YosysHQ_picorv32, alexforencich_verilog-ethernet, The-OpenROAD-Project_OpenROAD, darklife_darkriscv, corundum_corundum)
f61bac1 verified
Raw
History Blame Contribute Delete
731 Bytes
# 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]