/
githubmirror
/
strace
Обзор
Документация
Войти
/
githubmirror
/
strace
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/match.awk
33 строки
578 B
Dmitry V. Levin
Update copyright headers
16 фев 2021, 11:00
16 фев 2021, 11:00
8fa8a88
Код
Авторство
О чём код?
#!/bin/gawk # # Copyright (c) 2014-2021 Dmitry V. Levin <ldv@strace.io> # All rights reserved. # # SPDX-License-Identifier: GPL-2.0-or-later # s[] is array of match strings # r[] is array of match patterns NR > lines { next } { if (s[NR]) { if ($0 == s[NR]) next print "Line " NR " does not match expected string: " s[NR] } else { if (match($0, r[NR])) next print "Line " NR " does not match expected pattern: " r[NR] } fail = 1 } END { if (fail == 0 && NR != lines) { fail = 1 print "Expected " lines " lines, found " NR " line(s)." } exit fail }