Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
1 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: test/cctest/test-serialize.cc
Insertions: 6, Deletions: 0.
@@ -941,6 +941,12 @@
}
UNINITIALIZED_TEST(TestCustomSnapshotDataBlobWithLargeObjectString) {
+ if (V8_SINGLE_GENERATION_BOOL) {
+ // The relevant strings are in-place internalized in this mode, and thus
+ // never reach the codepath that allocates them in RO space. Skip the test.
+ return;
+ }
+
i::v8_flags.allow_natives_syntax = true;
std::stringstream ss;
ss << "var short_onebyte_string = %InternalizeString('a'.repeat(128));"
```
[snapshot] Don't allocate LO strings in RO space
.. since ReadOnlySpace must not contain objects exceeding
kMaxRegularHeapObjectSize.
Also, apply the same logic to two byte internalized strings.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |