summaryrefslogtreecommitdiffhomepage
path: root/tools/checklocks/test/BUILD
diff options
context:
space:
mode:
authorAdin Scannell <ascannell@google.com>2021-11-02 18:01:24 -0700
committergVisor bot <gvisor-bot@google.com>2021-11-02 18:04:26 -0700
commit7551b0590d87588deda562a959e09ada425bfea5 (patch)
treeebf5e58fd75233e06cbf7edbb26b1f8d1ae854a7 /tools/checklocks/test/BUILD
parenta8eb1895bbc4e1d41cdd621b8eca3f3e4912a446 (diff)
Minor checklocks improvements.
* Support sync.Locker. * Prevent runaway recursion when locks are acquired in a loop. * Allowing ignoring of anonymous functions (inherited from parent function). * Add support for aliases. PiperOrigin-RevId: 407221521
Diffstat (limited to 'tools/checklocks/test/BUILD')
-rw-r--r--tools/checklocks/test/BUILD2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/checklocks/test/BUILD b/tools/checklocks/test/BUILD
index f2ea6c7c6..4b90731f5 100644
--- a/tools/checklocks/test/BUILD
+++ b/tools/checklocks/test/BUILD
@@ -5,6 +5,7 @@ package(licenses = ["notice"])
go_library(
name = "test",
srcs = [
+ "aliases.go",
"alignment.go",
"anon.go",
"atomics.go",
@@ -13,6 +14,7 @@ go_library(
"closures.go",
"defer.go",
"incompat.go",
+ "locker.go",
"methods.go",
"parameters.go",
"return.go",