Commit 58da9da9 authored by Sebastian Zenker's avatar Sebastian Zenker

Added unit test Async/GetFunctorStartAdress which just calls…

Added unit test Async/GetFunctorStartAdress which just calls GetFunctorStartAdress() to provoke a core dump when running on ARM platforms. If you want to reproduce it, you don't need real ARM hardware. Just build Cap'n'proto with an ARM compiler and run it via QEMU.
parent 981814eb
......@@ -26,6 +26,10 @@
namespace kj {
namespace {
TEST(Async, GetFunctorStartAddress) {
EXPECT_TRUE(nullptr != _::GetFunctorStartAddress<>::apply([](){return 0;}));
}
TEST(Async, EvalVoid) {
EventLoop loop;
WaitScope waitScope(loop);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment