Skip to content

Commit 0b06ddf

Browse files
committed
fixup! deps: V8: cherry-pick e0a109c
1 parent 2702abb commit 0b06ddf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deps/v8/test/cctest/test-serialize.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3709,6 +3709,7 @@ UNINITIALIZED_TEST(ReinitializeHashSeedNotRehashable) {
37093709
}
37103710
blob =
37113711
creator.CreateBlob(v8::SnapshotCreator::FunctionCodeHandling::kClear);
3712+
CHECK(!blob.CanBeRehashed());
37123713
}
37133714

37143715
i::FLAG_hash_seed = 1337;
@@ -3774,7 +3775,7 @@ UNINITIALIZED_TEST(ReinitializeHashSeedRehashable) {
37743775
}
37753776
blob =
37763777
creator.CreateBlob(v8::SnapshotCreator::FunctionCodeHandling::kClear);
3777-
CHECK(!blob.CanBeRehashed());
3778+
CHECK(blob.CanBeRehashed());
37783779
}
37793780

37803781
i::FLAG_hash_seed = 1337;
@@ -3843,7 +3844,6 @@ UNINITIALIZED_TEST(WeakArraySerializationInSnapshot) {
38433844
}
38443845
blob =
38453846
creator.CreateBlob(v8::SnapshotCreator::FunctionCodeHandling::kClear);
3846-
CHECK(blob.CanBeRehashed());
38473847
}
38483848

38493849
v8::Isolate::CreateParams create_params;

0 commit comments

Comments
 (0)