mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-08 06:48:03 +02:00
check-def.sh: Adjust test to exempt _cairo_test_* functions as well as _cairo_*_test_*
This test started failing with the recent renaming of the following three functions, (before they had no cairo in their names so they were not getting picked up at all): _cairo_test_fallback_surface_create _cairo_test_meta_surface_create _cairo_test_paginated_surface_create_for_data With this change, the failure now goes away again.
This commit is contained in:
parent
5d23d0c90c
commit
75201c12be
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ for def in $defs; do
|
|||
|
||||
{
|
||||
echo EXPORTS
|
||||
eval $get_cairo_syms | grep -v '^_cairo_.*_test_\|^_fini\|^_init' | sort -u
|
||||
eval $get_cairo_syms | grep -v '^_cairo_.*test_\|^_fini\|^_init' | sort -u
|
||||
# cheat: copy the last line from the def file!
|
||||
tail -n1 $def
|
||||
} | diff $def - || status=1
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue