tests/test-check-rust-format.t
author Pierre-Yves David <pierre-yves.david@octobus.net>
Fri, 28 Jan 2022 14:25:32 +0100
changeset 48718 58a2c66fa94c
parent 48297 9ebc10ad4a04
child 48374 090346b095fb
permissions -rw-r--r--
merge: break up a not-so-one-liner for readability Differential Revision: https://phab.mercurial-scm.org/D12107

#require rustfmt test-repo

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

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