/
niceSOFT
/
diffutils
Обзор
Документация
Войти
/
niceSOFT
/
diffutils
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/ignore-case
26 строк
482 B
Bruno Haible
tests: Fix ignore-case failure on several platforms
12 июн 2024, 01:21
12 июн 2024, 01:21
d7588ed
Код
Авторство
О чём код?
#!/bin/sh # Test ignoring case . "${srcdir=.}/init.sh"; path_prepend_ ../src fail=0 printf 'Funky Stuff\n' >a printf 'fUNKy stuFf\n' >b diff -i a b >out || fail=1 compare /dev/null out || fail=1 require_utf8_locale_ echo 'AĀȀΆΑАӐḀἈA𐐀-Δ' >a echo 'aāȁάαаӑḁἀa𐐨-δ' >b diff -i a b >out || fail=1 compare /dev/null out || fail=1 mkdir d || framework_failure_ touch f d/F || framework_failure_ diff --ignore-file-name-case f d || fail=1 Exit $fail