Index: test/cctest/test-object-observe.cc |
diff --git a/test/cctest/test-object-observe.cc b/test/cctest/test-object-observe.cc |
index 3778fed81305ac828ebc79549de50f4d12491ca9..2bbcaadf06853c88fab1284d8aa265d87f2b1ea9 100644 |
--- a/test/cctest/test-object-observe.cc |
+++ b/test/cctest/test-object-observe.cc |
@@ -54,6 +54,7 @@ class HarmonyIsolate { |
}; |
} |
+ |
TEST(PerIsolateState) { |
HarmonyIsolate isolate; |
HandleScope scope(isolate.GetIsolate()); |
@@ -94,6 +95,7 @@ TEST(PerIsolateState) { |
CHECK_EQ(3, CompileRun("count")->Int32Value()); |
} |
+ |
TEST(EndOfMicrotaskDelivery) { |
HarmonyIsolate isolate; |
HandleScope scope(isolate.GetIsolate()); |
@@ -107,6 +109,7 @@ TEST(EndOfMicrotaskDelivery) { |
CHECK_EQ(1, CompileRun("count")->Int32Value()); |
} |
+ |
TEST(DeliveryOrdering) { |
HarmonyIsolate isolate; |
HandleScope scope(isolate.GetIsolate()); |
@@ -138,6 +141,7 @@ TEST(DeliveryOrdering) { |
CHECK_EQ(3, CompileRun("ordering[2]")->Int32Value()); |
} |
+ |
TEST(DeliveryOrderingReentrant) { |
HarmonyIsolate isolate; |
HandleScope scope(isolate.GetIsolate()); |
@@ -169,6 +173,7 @@ TEST(DeliveryOrderingReentrant) { |
CHECK_EQ(2, CompileRun("ordering[1]")->Int32Value()); |
} |
+ |
TEST(DeliveryOrderingDeliverChangeRecords) { |
HarmonyIsolate isolate; |
HandleScope scope(isolate.GetIsolate()); |
@@ -193,6 +198,7 @@ TEST(DeliveryOrderingDeliverChangeRecords) { |
CHECK_EQ(2, CompileRun("ordering[3]")->Int32Value()); |
} |
+ |
TEST(ObjectHashTableGrowth) { |
HarmonyIsolate isolate; |
HandleScope scope(isolate.GetIsolate()); |
@@ -222,6 +228,7 @@ TEST(ObjectHashTableGrowth) { |
CHECK(CompileRun("ran")->BooleanValue()); |
} |
+ |
TEST(GlobalObjectObservation) { |
HarmonyIsolate isolate; |
LocalContext context; |
@@ -290,6 +297,7 @@ struct RecordExpectation { |
Handle<Value> old_value; |
}; |
+ |
// TODO(adamk): Use this helper elsewhere in this file. |
static void ExpectRecords(Handle<Value> records, |
const RecordExpectation expectations[], |
@@ -360,6 +368,7 @@ TEST(APITestBasicMutation) { |
EXPECT_RECORDS(CompileRun("records"), expected_records); |
} |
+ |
TEST(HiddenPrototypeObservation) { |
HarmonyIsolate isolate; |
HandleScope scope(isolate.GetIsolate()); |