-
Notifications
You must be signed in to change notification settings - Fork 15.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We will soon be moving utf8_range into the protobuf repo, not as a subtree anymore but as the real source of truth. This change adds CI coverage in advance so that there will not be a lapse in coverage. I also upgraded our pinned versions of rules_fuzzing and rules_python, to fix some errors that came up with Bazel 6 and Python 3.12. I had to patch rules_fuzzing but I am working on upstreaming the fixes. PiperOrigin-RevId: 578671967
- Loading branch information
1 parent
5c4d643
commit eb6a468
Showing
5 changed files
with
55 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
exports_files([ | ||
"BUILD.bazel", | ||
"rules_fuzzing.patch", | ||
"zlib.BUILD", | ||
]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
diff --git a/fuzzing/tools/validate_dict.py b/fuzzing/tools/validate_dict.py | ||
index d561e68..52cbcb8 100644 | ||
--- a/fuzzing/tools/validate_dict.py | ||
+++ b/fuzzing/tools/validate_dict.py | ||
@@ -19,7 +19,7 @@ Validates and merges a set of fuzzing dictionary files into a single output. | ||
|
||
from absl import app | ||
from absl import flags | ||
-from dict_validation import validate_line | ||
+from fuzzing.tools.dict_validation import validate_line | ||
from sys import stderr | ||
|
||
FLAGS = flags.FLAGS | ||
diff --git a/fuzzing/requirements.txt b/fuzzing/requirements.txt | ||
index 01482d4..4b36f4f 100644 | ||
--- a/fuzzing/requirements.txt | ||
+++ b/fuzzing/requirements.txt | ||
@@ -1,5 +1,5 @@ | ||
# Python requirements for the tools supporting the fuzzing rules. These are | ||
# installed automatically through the WORKSPACE configuration. | ||
|
||
-absl-py==0.11.0 --hash=sha256:b3d9eb5119ff6e0a0125f6dabf2f9fae02f8acae7be70576002fac27235611c5 | ||
-six==1.15.0 --hash=sha256:8b74bedcbbbaca38ff6d7491d76f2b06b3592611af620f8426e82dddb04a5ced | ||
+absl-py==2.0.0 --hash=sha256:9a28abb62774ae4e8edbe2dd4c49ffcd45a6a848952a5eccc6a49f3f0fc1e2f3 | ||
+six==1.15.0 |