@@ -29,7 +29,6 @@ PTESTS_FAST = "\
json-c \
json-glib \
libcheck \
- libconfig \
libconvert-asn1-perl \
libexif \
libgpg-error\
deleted file mode 100755
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-cd tests
-
-for t in libconfig_tests; do
- if [ -x ./$t ]; then
- ./$t
- if [ $? -eq 0 ]; then
- echo "PASS: $t"
- else
- echo "FAIL: $t"
- fi
- else
- echo "SKIP: $t"
- fi
-done
@@ -9,7 +9,6 @@ LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=17c8e32f0f72580cc2906b409d46b5ac"
SRC_URI = " \
git://github.com/hyperrealm/libconfig.git;protocol=https;branch=master;tag=v${PV} \
- file://run-ptest \
"
SRCREV = "a42cb47c1526a4f2ed025fcbb2289863375bc898"
@@ -18,7 +17,7 @@ DEPENDS += "bison-native flex-native"
UPSTREAM_CHECK_GITTAGREGEX = "^v(?P<pver>\d+(\.\d+)+)$"
-inherit autotools pkgconfig ptest
+inherit autotools pkgconfig
PACKAGE_BEFORE_PN = "${PN}++"
FILES:${PN}++ = "${libdir}/${BPN}++*${SOLIBS}"
@@ -28,19 +27,3 @@ do_compile:prepend() {
rm -f ${S}/lib/grammar.[ch]
rm -f ${S}/lib/scanner.[ch]
}
-
-do_compile_ptest() {
- oe_runmake -C tests check TESTS=
-}
-
-do_install_ptest() {
- install -d ${D}${PTEST_PATH}/tests
-
- if [ -f ${B}/tests/libconfig_tests ]; then
- libtool --mode=install install -m 0755 ${B}/tests/libconfig_tests ${D}${PTEST_PATH}/tests/libconfig_tests
- fi
-
- if [ -d ${S}/tests/testdata ]; then
- cp -r ${S}/tests/testdata ${D}${PTEST_PATH}/tests/
- fi
-}