зеркало из https://github.com/microsoft/git.git
Test: catch if trash cannot be removed
When your test creates an unwritable directory that test framework cannot clean out by "rm -fr trash", later tests cannot start in a fresh state they expect to. Detect this and error out early. Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
29dc133198
Коммит
8d14ac9454
|
@ -396,7 +396,12 @@ fi
|
||||||
|
|
||||||
# Test repository
|
# Test repository
|
||||||
test=trash
|
test=trash
|
||||||
rm -fr "$test"
|
rm -fr "$test" || {
|
||||||
|
trap - exit
|
||||||
|
echo >&5 "FATAL: Cannot prepare test area"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
test_create_repo $test
|
test_create_repo $test
|
||||||
cd "$test"
|
cd "$test"
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче