File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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;
You can’t perform that action at this time.
0 commit comments