blob: 7772ed76aa8d8fff477ee209496309c330e51aa3 [file]
# Copyright 2025 The IREE Authors
#
# Licensed under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
# Tests for HAL (Hardware Abstraction Layer) functionality.
# These tests validate cross-driver interactions and integration scenarios.
load("//build_tools/bazel:build_defs.oss.bzl", "iree_runtime_cc_test")
package(
default_visibility = ["//visibility:public"],
features = ["layering_check"],
licenses = ["notice"], # Apache 2.0
)
iree_runtime_cc_test(
name = "buffer_ref_binding_normalization_test",
srcs = ["buffer_ref_binding_normalization_test.cc"],
deps = [
"//runtime/src/iree/base",
"//runtime/src/iree/hal",
"//runtime/src/iree/testing:gtest",
"//runtime/src/iree/testing:gtest_main",
],
)