Files
wolfssl/scripts/unit.test.in
T

9 lines
211 B
Bash
Raw Normal View History

2021-02-05 10:40:31 -08:00
#!/bin/sh
bwrap_path="$(command -v bwrap)"
if [ -n "$bwrap_path" ]; then
exec "$bwrap_path" --unshare-net --dev-bind / / "@builddir@/tests/unit.test" "$@"
else
exec "@builddir@/tests/unit.test" "$@"
fi