X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2Flibrary.at;h=b0ccd40da393aa5be782003d957bce23b9010cc7;hb=3ba9c6a5a5468626dcfeb1f9a750bb0efc8c6a7a;hp=a978c13cba4c8f9cdd563e16fdfdf74f4dc3bcbf;hpb=69fc54f47bbc35e81bfe2e38e57f5dcfd9858df4;p=sliver-openvswitch.git diff --git a/tests/library.at b/tests/library.at index a978c13cb..b0ccd40da 100644 --- a/tests/library.at +++ b/tests/library.at @@ -112,14 +112,16 @@ AT_CLEANUP m4_foreach( [testname], [[ctz], + [clz], [round_up_pow2], [round_down_pow2], - [popcount], + [count_1bits], [log_2_floor], [bitwise_copy], [bitwise_zero], [bitwise_one], - [bitwise_is_all_zeros]], + [bitwise_is_all_zeros], + [ovs_scan]], [AT_SETUP([testname[()] function]) AT_KEYWORDS([testname]) AT_CHECK([test-util testname], [0], [], []) @@ -135,7 +137,6 @@ dnl is about 100 bytes. On Linux, we work around this by indirecting through dnl a directory fd using /proc/self/fd/. We do not have a workaround dnl for other platforms, so we skip the test there. AT_SETUP([test unix socket, long pathname - C]) -AT_SKIP_IF([test ! -d /proc/self/fd]) dnl Linux has a 108 byte limit; this is 150 bytes long. longname=012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789 mkdir $longname @@ -155,7 +156,6 @@ dnl a directory fd using /proc/self/fd/. We do not have a workaround dnl for other platforms, so we skip the test there. AT_SETUP([test unix socket, long pathname - Python]) AT_SKIP_IF([test $HAVE_PYTHON = no]) -AT_SKIP_IF([test ! -d /proc/self/fd]) dnl Linux has a 108 byte limit; this is 150 bytes long. longname=012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789 mkdir $longname @@ -181,3 +181,7 @@ AT_CHECK([sed 's/.*: // ]) AT_CLEANUP + +AT_SETUP([snprintf]) +AT_CHECK([test-util snprintf]) +AT_CLEANUP