Merge pull request #8694 from obsidiansystems/fix-lang-tests

Fix race condition in the language tests
This commit is contained in:
John Ericson 2023-07-13 09:13:25 -04:00 committed by GitHub
commit bbc08a11f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View file

@ -52,9 +52,10 @@ for i in lang/parse-okay-*.nix; do
i=$(basename "$i" .nix)
if
expect 0 nix-instantiate --parse - < "lang/$i.nix" \
1> >(sed "s!$(pwd)!/pwd!g" > "lang/$i.out") \
2> >(sed "s!$(pwd)!/pwd!g" > "lang/$i.err")
1> "lang/$i.out" \
2> "lang/$i.err"
then
sed "s!$(pwd)!/pwd!g" "lang/$i.out" "lang/$i.err"
diffAndAccept "$i" out exp
diffAndAccept "$i" err err.exp
else

View file

@ -16,7 +16,7 @@ function diffAndAcceptInner() {
fi
# Diff so we get a nice message
if ! diff "$got" "$expectedOrEmpty"; then
if ! diff --unified "$got" "$expectedOrEmpty"; then
echo "FAIL: evaluation result of $testName not as expected"
badDiff=1
fi