tests/test-check-rust-format.t
author Pierre-Yves David <pierre-yves.david@octobus.net>
Fri, 01 Oct 2021 09:16:53 +0200
changeset 48169 b45c4dc65adc
parent 46002 d42809b6b10f
child 48297 9ebc10ad4a04
permissions -rw-r--r--
dirstate-item: drop the legacy new_added constructor Nobody is calling it anymore. Its purposes has been filled. Differential Revision: https://phab.mercurial-scm.org/D11601

#require rustfmt test-repo

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

  $ cd "$TESTDIR"/..
  $ RUSTFMT=$(rustup which --toolchain nightly-2020-10-04 rustfmt)
  $ for f in `testrepohg files 'glob:**/*.rs'` ; do
  >   $RUSTFMT --check --edition=2018 --unstable-features --color=never $f
  > done