mirror of https://github.com/OpenRC/openrc.git
17 lines
438 B
Bash
Executable File
17 lines
438 B
Bash
Executable File
#!/bin/sh
|
|
|
|
top_srcdir=${SOURCE_ROOT:-..}
|
|
. ${top_srcdir}/test/setup_env.sh
|
|
|
|
ebegin "Checking for x* func usage"
|
|
out=$(cd ${top_srcdir}; find src -name '*.[ch]' \
|
|
! -name queue.h \
|
|
-exec grep -n -E '\<(malloc|strdup)[[:space:]]*\(' {} + \
|
|
| grep -v -E \
|
|
-e '__attribute__[[:space:]]*\(\(malloc' \
|
|
-e src/shared/helpers.h \
|
|
-e src/libeinfo/libeinfo.c)
|
|
|
|
[ -z "${out}" ]
|
|
eend $? "These need to be using the x* variant:"$'\n'"${out}"
|