freedreno: add symbols test
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>main
parent
44e9a0258a
commit
7c7d1f3c9c
|
@ -24,4 +24,5 @@ libdrm_freedrenocommoninclude_HEADERS = $(LIBDRM_FREEDRENO_H_FILES)
|
|||
pkgconfigdir = @pkgconfigdir@
|
||||
pkgconfig_DATA = libdrm_freedreno.pc
|
||||
|
||||
EXTRA_DIST = Android.mk
|
||||
TESTS = freedreno-symbol-check
|
||||
EXTRA_DIST = Android.mk $(TESTS)
|
||||
|
|
|
@ -0,0 +1,52 @@
|
|||
#!/bin/bash
|
||||
|
||||
# The following symbols (past the first five) are taken from the public headers.
|
||||
# A list of the latter should be available Makefile.sources/LIBDRM_FREEDRENO_H_FILES
|
||||
|
||||
FUNCS=$(nm -D --format=bsd --defined-only ${1-.libs/libdrm_freedreno.so} | awk '{print $3}'| while read func; do
|
||||
( grep -q "^$func$" || echo $func ) <<EOF
|
||||
__bss_start
|
||||
_edata
|
||||
_end
|
||||
_fini
|
||||
_init
|
||||
fd_bo_cpu_fini
|
||||
fd_bo_cpu_prep
|
||||
fd_bo_del
|
||||
fd_bo_dmabuf
|
||||
fd_bo_from_dmabuf
|
||||
fd_bo_from_fbdev
|
||||
fd_bo_from_handle
|
||||
fd_bo_from_name
|
||||
fd_bo_get_name
|
||||
fd_bo_handle
|
||||
fd_bo_map
|
||||
fd_bo_new
|
||||
fd_bo_ref
|
||||
fd_bo_size
|
||||
fd_device_del
|
||||
fd_device_new
|
||||
fd_device_new_dup
|
||||
fd_device_ref
|
||||
fd_pipe_del
|
||||
fd_pipe_get_param
|
||||
fd_pipe_new
|
||||
fd_pipe_wait
|
||||
fd_ringbuffer_del
|
||||
fd_ringbuffer_emit_reloc_ring
|
||||
fd_ringbuffer_flush
|
||||
fd_ringbuffer_new
|
||||
fd_ringbuffer_reloc
|
||||
fd_ringbuffer_reset
|
||||
fd_ringbuffer_set_parent
|
||||
fd_ringbuffer_timestamp
|
||||
fd_ringmarker_del
|
||||
fd_ringmarker_dwords
|
||||
fd_ringmarker_flush
|
||||
fd_ringmarker_mark
|
||||
fd_ringmarker_new
|
||||
EOF
|
||||
done)
|
||||
|
||||
test ! -n "$FUNCS" || echo $FUNCS
|
||||
test ! -n "$FUNCS"
|
Loading…
Reference in New Issue