Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
env:
CARGO_TERM_COLOR: always

# LINT.IfChange
jobs:
build:

Expand All @@ -21,3 +22,4 @@ jobs:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose --bin cc_bindings_from_rs
# LINT.ThenChange(//depot/copy.bara.sky)
2 changes: 1 addition & 1 deletion bazel/llvm.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def _llvm_loader_repository(repository_ctx):
executable = False,
)

LLVM_COMMIT_SHA = "29c830cbf8c65fcab7f96f92c8466cbcc9924dd1"
LLVM_COMMIT_SHA = "028bfa255e90581d1c08237a66c20b25096277e8"

def llvm_loader_repository_dependencies():
# This *declares* the dependency, but it won't actually be *downloaded* unless it's used.
Expand Down
24 changes: 23 additions & 1 deletion nullability/inference/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ cc_test(
deps = [
":augmented_test_inputs",
":collect_evidence",
":collect_evidence_test_utilities",
":inference_cc_proto",
":slot_fingerprint",
":usr_cache",
"//nullability:pointer_nullability_analysis",
"//nullability:pragma",
"//nullability:proto_matchers",
"@llvm-project//clang:analysis",
Expand Down Expand Up @@ -328,6 +328,28 @@ cc_library(
],
)

cc_library(
name = "collect_evidence_test_utilities",
testonly = True,
srcs = ["collect_evidence_test_utilities.cc"],
hdrs = ["collect_evidence_test_utilities.h"],
deps = [
":augmented_test_inputs",
":collect_evidence",
":inference_cc_proto",
":usr_cache",
"//nullability:pointer_nullability_analysis",
"//nullability:pragma",
"@llvm-project//clang:ast",
"@llvm-project//clang:testing",
"@llvm-project//clang/unittests:dataflow_testing_support",
"@llvm-project//llvm:Support",
"@llvm-project//llvm:TestingSupport",
"@llvm-project//third-party/unittest:gmock",
"@llvm-project//third-party/unittest:gtest",
],
)

cc_test(
name = "replace_macros_test",
srcs = ["replace_macros_test.cc"],
Expand Down
Loading