#!/bin/bash -eux

cargo test --bins -- "$@"

CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER='./test-env/run-test debian-trixie' \
  cargo test \
    --features test-env-vm \
    --test '*' \
    -- \
    "$@"
