fdfa6dbb0e
* rewrite tests to work with meson This ports our tests to meson and makes them able to be run in parallel. * add tests to ci * rewrite test/check-trailing-newlines in bash This test was using a GNU sed command which does not work on Alpine Linux.
12 lines
354 B
Bash
Executable File
12 lines
354 B
Bash
Executable File
#!/bin/sh
|
|
|
|
top_srcdir=${SOURCE_ROOT:-..}
|
|
. ${top_srcdir}/test/setup_env.sh
|
|
|
|
ebegin "Checking for obsolete functions"
|
|
out=$(cd ${top_srcdir}; find src -name '*.[ch]' \
|
|
! -name queue.h \
|
|
-exec grep -n -E '\<(malloc|memory|sys/(errno|fcntl|signal|stropts|termios|unistd))\.h\>' {} +)
|
|
[ -z "${out}" ]
|
|
eend $? "Avoid these obsolete functions:"$'\n'"${out}"
|