tests/test-check-rust-format.t
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 28 Jul 2021 14:56:10 +0200
branchstable
changeset 47774 c405c089611a
parent 46002 d42809b6b10f
child 48297 9ebc10ad4a04
permissions -rw-r--r--
run-tests: do not inherit file descriptor when running a command This is one of the difference between python2 and python3 and could have been a reason why test hang with python2 + chg. This does not seems to help the hanging issue at all… However, now that this is written lets reduce the difference between python2 and python3. Differential Revision: https://phab.mercurial-scm.org/D11226

#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