summaryrefslogtreecommitdiff
path: root/tests/auto/v8/tst_v8.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/v8/tst_v8.cpp')
-rw-r--r--tests/auto/v8/tst_v8.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/auto/v8/tst_v8.cpp b/tests/auto/v8/tst_v8.cpp
index 005951e..d73bf91 100644
--- a/tests/auto/v8/tst_v8.cpp
+++ b/tests/auto/v8/tst_v8.cpp
@@ -63,6 +63,9 @@ private slots:
void typeOf();
void referenceerror();
void qtbug_24871();
+ void fallbackpropertyhandler_callbacks();
+ void fallbackpropertyhandler_in_prototype();
+ void fallbackpropertyhandler_nonempty();
};
void tst_v8::eval()
@@ -110,6 +113,21 @@ void tst_v8::qtbug_24871()
QVERIFY(v8test_qtbug_24871());
}
+void tst_v8::fallbackpropertyhandler_callbacks()
+{
+ QVERIFY(v8test_fallbackpropertyhandler_callbacks());
+}
+
+void tst_v8::fallbackpropertyhandler_in_prototype()
+{
+ QVERIFY(v8test_fallbackpropertyhandler_in_prototype());
+}
+
+void tst_v8::fallbackpropertyhandler_nonempty()
+{
+ QVERIFY(v8test_fallbackpropertyhandler_nonempty());
+}
+
int main(int argc, char *argv[])
{
V8::SetFlagsFromCommandLine(&argc, argv, true);