tests/test-check-rust-format.t
author Georges Racinet <georges.racinet@cloudcrane.io>
Wed, 29 Jan 2025 18:26:10 +0100
changeset 52859 9f083ff3c96c
parent 51733 48eb51494a7a
permissions -rw-r--r--
rust-pyo3-dirstate: DirstateMap simple read-only methods This takes care of all read-only methods except: - copymap methods - methods returning iterators These two categories will be done in forthcoming changesets.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
43819
e8a3bbffdc7d tests: add test for Rust formatting
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
     1
#require rustfmt test-repo
e8a3bbffdc7d tests: add test for Rust formatting
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
     2
e8a3bbffdc7d tests: add test for Rust formatting
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
     3
  $ . "$TESTDIR/helpers-testrepo.sh"
e8a3bbffdc7d tests: add test for Rust formatting
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
     4
e8a3bbffdc7d tests: add test for Rust formatting
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
     5
  $ cd "$TESTDIR"/..
48742
090346b095fb hghave: update rustfmt criterion
Rapha?l Gom?s <rgomes@octobus.net>
parents: 48297
diff changeset
     6
090346b095fb hghave: update rustfmt criterion
Rapha?l Gom?s <rgomes@octobus.net>
parents: 48297
diff changeset
     7
Warning: Keep this in sync with hghave.py
51732
c8188b10cf43 hghave: update expected rustfmt version
Rapha?l Gom?s <rgomes@octobus.net>
parents: 48742
diff changeset
     8
  $ RUSTFMT=$(rustup which --toolchain nightly-2024-07-16 rustfmt)
43819
e8a3bbffdc7d tests: add test for Rust formatting
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
     9
  $ for f in `testrepohg files 'glob:**/*.rs'` ; do
51733
48eb51494a7a rustfmt: update expected Rust edition
Rapha?l Gom?s <rgomes@octobus.net>
parents: 51732
diff changeset
    10
  >   $RUSTFMT --check --edition=2021 --unstable-features --color=never $f
43819
e8a3bbffdc7d tests: add test for Rust formatting
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
    11
  > done