From 99ef2719fb3d703fe38c4113cd7f5adec516dd3a Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Fri, 28 Oct 2016 20:29:21 +0200 Subject: test: remove test suite The test suite is now a developed in a separate git repository. See here: http://cgit.uclibc-ng.org/cgi/cgit/uclibc-ng-test.git The test suite should be just like every other software compiled with the cross-toolchain. In the past strange problems where found when the test suite got build in the toolchain creation step. --- test/plt/check-plt.sh | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100755 test/plt/check-plt.sh (limited to 'test/plt') diff --git a/test/plt/check-plt.sh b/test/plt/check-plt.sh deleted file mode 100755 index bedc8fd35..000000000 --- a/test/plt/check-plt.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/sh -allowed=" -calloc -free -malloc -memalign -realloc -" - -${OBJDUMP:-objdump} -d ${top_builddir:-../..}/lib/libc.so.? | \ -gawk -v allowed="${allowed}" ' -BEGIN { - COUNT = split(" " allowed, ALLOWED); -} - -# Strip away the noise. The name will be like: -# : -# -function symstrip(name) { - return gensub(/.*<([^>@]*).*/, "\\1", "", name); -} - -{ -# Match the start of the symbol disassembly -# 00009720 : -if ($2 ~ />:$/) { - f = symstrip($2); - -} else if ($NF ~ /@plt>/) { - rf = symstrip($NF); - for (a in ALLOWED) { - a = ALLOWED[a]; - if (a == rf) - next; - } - print "Func " f " references " rf; -} -}' | sort -u -- cgit v1.2.3