File tree 3 files changed +17
-0
lines changed 3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -21,3 +21,7 @@ members = ["."]
21
21
[[bin ]]
22
22
name = " fuzz_regex_match"
23
23
path = " fuzz_targets/fuzz_regex_match.rs"
24
+
25
+ [profile .release ]
26
+ opt-level = 3
27
+ debug = true
Original file line number Diff line number Diff line change
1
+ // These tests are only run for the "default" test target because some of them
2
+ // can take quite a long time. Some of them take long enough that it's not
3
+ // practical to run them in debug mode. :-/
4
+
5
+ // See: https://oss-fuzz.com/testcase-detail/5673225499181056
6
+ //
7
+ // Ignored by default since it takes too long in debug mode (almost a minute).
8
+ #[ test]
9
+ #[ ignore]
10
+ fn fuzz1 ( ) {
11
+ regex ! ( r"1}{55}{0}*{1}{55}{55}{5}*{1}{55}+{56}|;**" ) ;
12
+ }
Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ mod misc;
49
49
mod multiline;
50
50
mod noparse;
51
51
mod regression;
52
+ mod regression_fuzz;
52
53
mod replace;
53
54
mod searcher;
54
55
mod set;
You can’t perform that action at this time.
0 commit comments