summaryrefslogtreecommitdiff
path: root/extra/re2/re2-2020-05-01-compile-test-out-of-memory-fix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'extra/re2/re2-2020-05-01-compile-test-out-of-memory-fix.patch')
-rw-r--r--extra/re2/re2-2020-05-01-compile-test-out-of-memory-fix.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/extra/re2/re2-2020-05-01-compile-test-out-of-memory-fix.patch b/extra/re2/re2-2020-05-01-compile-test-out-of-memory-fix.patch
deleted file mode 100644
index 8b8b874c..00000000
--- a/extra/re2/re2-2020-05-01-compile-test-out-of-memory-fix.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -rauN re2-2020-05-01/re2/testing/compile_test.cc re2-2020-05-01-compile-test-out-of-memory-fix-patch/re2/testing/compile_test.cc
---- re2-2020-05-01/re2/testing/compile_test.cc 2020-04-23 17:56:11.000000000 +0200
-+++ re2-2020-05-01-compile-test-out-of-memory-fix-patch/re2/testing/compile_test.cc 2020-05-16 17:17:05.570251742 +0200
-@@ -236,7 +236,7 @@
- "^(?P<name1>[^\\s]+)\\s+(?P<name2>[^\\s]+)\\s+(?P<name3>.+)$",
- Regexp::LikePerl, NULL);
- EXPECT_TRUE(re != NULL);
-- Prog* prog = re->CompileToProg(920);
-+ Prog* prog = re->CompileToProg(850);
- // If the memory budget has been exhausted, compilation should fail
- // and return NULL instead of trying to do anything with NoMatch().
- EXPECT_TRUE(prog == NULL);