tests/test-check-clang-format.t
author Gregory Szorc <gregory.szorc@gmail.com>
Sat, 03 Oct 2020 14:44:11 -0700
changeset 45645 6a36e2d2011f
parent 37186 0024961aa493
permissions -rw-r--r--
contrib: install Rust 1.46.0 Let's use the latest/greatest version of Rust in the automation environment. Differential Revision: https://phab.mercurial-scm.org/D9146

#require clang-format test-repo

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

  $ cd "$TESTDIR"/..
  $ for f in `testrepohg files 'set:(**.c or **.cc or **.h) and not "listfile:contrib/clang-format-ignorelist"'` ; do
  >   clang-format --style file $f > $f.formatted
  >   cmp $f $f.formatted || diff -u $f $f.formatted
  >   rm $f.formatted
  > done