includeos / IncludeOS

A minimal, resource efficient unikernel for cloud services
https://www.includeos.org
Apache License 2.0
4.86k stars 358 forks source link

Fix memmap_test #2254

Closed MagnusS closed 10 hours ago

MagnusS commented 2 days ago

std::span does't have range checking, so the test fails. This commit just disables that part of the test.

The error was introduced when we switched from GSL::span, which had range checks.

alfreb commented 10 hours ago

Thanks!