view tests/test-check-rust-format.t @ 52296:4361d787e6cf

rust-cpython: remove outdated test This test wasn't testing anything anymore since the feature has been removed. This was caught by clippy 1.82.0.
author Raphaël Gomès <rgomes@octobus.net>
date Tue, 29 Oct 2024 11:35:41 +0100
parents 48eb51494a7a
children
line wrap: on
line source

#require rustfmt test-repo

  $ . "$TESTDIR/helpers-testrepo.sh"

  $ cd "$TESTDIR"/..

Warning: Keep this in sync with hghave.py
  $ RUSTFMT=$(rustup which --toolchain nightly-2024-07-16 rustfmt)
  $ for f in `testrepohg files 'glob:**/*.rs'` ; do
  >   $RUSTFMT --check --edition=2021 --unstable-features --color=never $f
  > done