miri.mts 238 B

12345678
  1. #!/usr/bin/env zx
  2. import 'zx/globals';
  3. import { cliArguments, getToolchainArgument } from './setup/shared.mts';
  4. const args = cliArguments();
  5. const toolchain = getToolchainArgument('lint');
  6. await $`cargo ${toolchain} miri test ${args}`;