summaryrefslogtreecommitdiff
path: root/tests/pke-test-dummy.cpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2025-07-24 11:02:42 -0400
committerJonathan Bradley <jcb@pikum.xyz>2025-07-24 11:02:42 -0400
commit5e341340de5259acdb119866dc6819a81ed0ca84 (patch)
treee54360445b78607ea2d82dedc6ecbeffcbad6d45 /tests/pke-test-dummy.cpp
parent7d3b7f981998fdeb5375dff70f222821b0cdfc3d (diff)
pke: pk.h breaking changes in test suite
Diffstat (limited to 'tests/pke-test-dummy.cpp')
-rw-r--r--tests/pke-test-dummy.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/pke-test-dummy.cpp b/tests/pke-test-dummy.cpp
index 0caa865..8fdc146 100644
--- a/tests/pke-test-dummy.cpp
+++ b/tests/pke-test-dummy.cpp
@@ -5,11 +5,13 @@
#include "camera.hpp"
#include "ecs.hpp"
#include "physics.hpp"
+#include "pk.h"
#include "scene.hpp"
#include "static-ui.hpp"
#include "thread-pool.hpp"
int pke_test_dummy_001() {
+ pk_ev_init(nullptr);
Physics_Init();
PkeThreads_Init();
AM_Init();
@@ -34,6 +36,7 @@ int pke_test_dummy_001() {
AM_Teardown();
PkeThreads_Teardown();
Physics_Teardown();
+ pk_ev_teardown();
return 0;
}