summaryrefslogtreecommitdiffstats
path: root/tests/manual/wasm/qtloader_integration/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/wasm/qtloader_integration/main.cpp')
-rw-r--r--tests/manual/wasm/qtloader_integration/main.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/manual/wasm/qtloader_integration/main.cpp b/tests/manual/wasm/qtloader_integration/main.cpp
index ee032e9952d..d93aef64172 100644
--- a/tests/manual/wasm/qtloader_integration/main.cpp
+++ b/tests/manual/wasm/qtloader_integration/main.cpp
@@ -69,6 +69,11 @@ void crash()
std::abort();
}
+void stackOverflow()
+{
+ stackOverflow(); // should eventually termniate with exception
+}
+
void exitApp()
{
emscripten_force_exit(ExitValueFromExitApp);
@@ -143,8 +148,15 @@ int main(int argc, char **argv)
if (crashImmediately)
crash();
+ const bool stackOverflowImmediately =
+ std::find(arguments.begin(), arguments.end(), QStringLiteral("--stack-owerflow-immediately"))
+ != arguments.end();
+ if (stackOverflowImmediately)
+ stackOverflow();
+
const bool noGui = std::find(arguments.begin(), arguments.end(), QStringLiteral("--no-gui"))
!= arguments.end();
+
if (!noGui) {
AppWindow window;
window.show();