sanity: fix race conditions in the test suite
* tests/sanity/80columns.test, tests/sanity/includes.test, tests/sanity/private.test, tests/sanity/style.test: Have each test record failure in a separate file.
This commit is contained in:
parent
3a3913cf50
commit
9b5a763538
4 changed files with 22 additions and 22 deletions
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright (C) 2012 Laboratoire de Recherche et Développement de
|
||||
# Copyright (C) 2012, 2016 Laboratoire de Recherche et Développement de
|
||||
# l'Epita (LRDE).
|
||||
# Copyright (C) 2004, 2005 Laboratoire d'Informatique de Paris 6
|
||||
# (LIP6), département Systèmes Répartis Coopératifs (SRC), Université
|
||||
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
set -e
|
||||
|
||||
rm -f failures
|
||||
rm -f failures.80
|
||||
|
||||
LANG=en_US.UTF-8
|
||||
export LANG
|
||||
|
|
@ -55,15 +55,15 @@ for dir in "${srcdir-.}/../../spot" "${srcdir-.}/.."; do
|
|||
grep 'generated by flex' "$file" >/dev/null ; then
|
||||
:
|
||||
else
|
||||
echo "$file" >>failures
|
||||
echo "$file" >>failures.80
|
||||
fi
|
||||
fi
|
||||
done
|
||||
done
|
||||
|
||||
if test -f failures; then
|
||||
if test -f failures.80; then
|
||||
echo "The following files contain lines with more than 80 characters:"
|
||||
cat failures
|
||||
rm failures
|
||||
cat failures.80
|
||||
rm failures.80
|
||||
exit 1;
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue