mpicbg-scicomp / gearshifft

Benchmark Suite for Heterogenuous FFT Implementations
Apache License 2.0
34 stars 9 forks source link

Fix invalid chunk size error #157

Open zyzzyxdonta opened 8 months ago

zyzzyxdonta commented 8 months ago

Under certain circumstances (including running the tests), gearshifft runs successfully but then fails during program finalization, showing an error:

malloc_consolidate(): invalid chunk size

This is due to the fact that boost unit test is linked (either statically or dynamically) but the single header variant is included everywhere.

This pull request fixes the error by including the correct boost unit test header for usage in linking scenarios.

More information: https://www.boost.org/doc/libs/1_59_0/libs/test/doc/html/boost_test/usage_variants.html