mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-26 23:13:27 +08:00
ltp-testsuite: Bump version to 20090630.
Closes #437 - Remove a few obsolete patches. - Add a patch to disable syscall tests unsupported by uClibc. - Add a patch to fix sched_getaffinity build. Signed-off-by: Will Newton <will.newton@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
81f9990e02
commit
56fcdc9b6e
1
CHANGES
1
CHANGES
@ -45,6 +45,7 @@
|
||||
#419: Bump lighttpd package to 1.4.23
|
||||
#421: toolchain: Clean up toolchain locale support menu
|
||||
#427: webkit: Update to WebKit svn r44552
|
||||
#437: ltp-testsuite: Bump version to 20090630
|
||||
#451: Upgrade from unmaintained dosfstools-2.11 to dosfstools-3.0.3
|
||||
#467: DirectFB 1.4.1
|
||||
#473: memstat_0.5.tar.gz has install with -D and that fails "make"
|
||||
|
11
package/ltp-testsuite/ltp-testsuite-sched-getaffinity.patch
Normal file
11
package/ltp-testsuite/ltp-testsuite-sched-getaffinity.patch
Normal file
@ -0,0 +1,11 @@
|
||||
--- ltp-full-20090630/testcases/kernel/syscalls/sched_getaffinity/Makefile 2009-06-15 19:38:04.000000000 +0100
|
||||
+++ ltp-full-20090630.mod/testcases/kernel/syscalls/sched_getaffinity/Makefile 2009-07-02 15:02:33.000000000 +0100
|
||||
@@ -16,7 +16,7 @@
|
||||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
|
||||
-CFLAGS += -I../../../../include -Wall
|
||||
+CFLAGS += -I../../../../include -Wall -D_GNU_SOURCE
|
||||
LDLIBS += -L../../../../lib -lltp
|
||||
|
||||
SRCS = $(wildcard *.c)
|
@ -1,11 +0,0 @@
|
||||
--- ltp-full-20061121/IDcheck.sh.orig 2006-12-07 22:31:29.000000000 -0700
|
||||
+++ ltp-full-20061121/IDcheck.sh 2006-12-07 22:32:58.000000000 -0700
|
||||
@@ -85,7 +85,7 @@
|
||||
fi
|
||||
|
||||
whoami | grep root > /dev/null
|
||||
-if [ $? == "0" ]; then
|
||||
+if [ $? = "0" ]; then
|
||||
I_AM_ROOT=1
|
||||
fi
|
||||
|
11
package/ltp-testsuite/ltp-testsuite-uclibc-syscalls.patch
Normal file
11
package/ltp-testsuite/ltp-testsuite-uclibc-syscalls.patch
Normal file
@ -0,0 +1,11 @@
|
||||
--- ltp-full-20090630/testcases/kernel/syscalls/Makefile 2009-02-26 11:37:28.000000000 +0000
|
||||
+++ ltp-full-20090630.mod/testcases/kernel/syscalls/Makefile 2009-07-02 14:57:30.000000000 +0100
|
||||
@@ -25,7 +25,7 @@
|
||||
#
|
||||
# Commented this out since there are directories here we don't want built by default
|
||||
#
|
||||
-SUBDIR = `ls */Makefile | sed "s/Makefile//g"`
|
||||
+SUBDIR = `ls */Makefile | sed "s/Makefile//g" | grep -vE "^clock_nanosleep|quotactl|sched_getaffinity|sigreturn|unshare"`
|
||||
UCLINUX_SUBDIR = `ls */Makefile | sed "s/Makefile//g" | grep -vE "^fork|epoll|capget|capset|chmod|chown|llseek|nftw|clone|profil|getcontext|remap_file_pages"`
|
||||
|
||||
all:
|
@ -3,7 +3,7 @@
|
||||
# ltp-testsuite
|
||||
#
|
||||
#############################################################
|
||||
LTP_TESTSUITE_VERSION:=20070228
|
||||
LTP_TESTSUITE_VERSION:=20090630
|
||||
LTP_TESTSUITE_SOURCE:=ltp-full-$(LTP_TESTSUITE_VERSION).tgz
|
||||
LTP_TESTSUITE_SITE:=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/ltp
|
||||
LTP_TESTSUITE_CAT:=$(ZCAT)
|
||||
@ -15,7 +15,8 @@ LTP_TESTSUITE_DIR:=$(LTP_TESTSUITE_ROOT)/ltp-full-$(LTP_TESTSUITE_VERSION)
|
||||
#
|
||||
LTP_PATCHES:=ltp-testsuite-generate-needs-bash.patch \
|
||||
ltp-testsuite-sh-is-not-C-code.patch \
|
||||
ltp-testsuite.patch
|
||||
ltp-testsuite-sched-getaffinity.patch \
|
||||
ltp-testsuite-uclibc-syscalls.patch
|
||||
|
||||
ifeq ($(BR2_PTHREADS_NATIVE),y)
|
||||
LTP_PATCHES+=ltp-testsuite-enable-openposix-for-nptl.patch
|
||||
|
@ -1,73 +0,0 @@
|
||||
diff -ur ltp-full-20061121/testcases/kernel/syscalls/fmtmsg/Makefile ltp-full-20061121-patched/testcases/kernel/syscalls/fmtmsg/Makefile
|
||||
--- ltp-full-20061121/testcases/kernel/syscalls/fmtmsg/Makefile 2006-11-21 14:31:28.000000000 -0600
|
||||
+++ ltp-full-20061121-patched/testcases/kernel/syscalls/fmtmsg/Makefile 2006-12-02 00:16:36.830948316 -0600
|
||||
@@ -20,7 +20,7 @@
|
||||
LDLIBS += -L../../../../lib -lltp
|
||||
|
||||
SRCS = $(wildcard *.c)
|
||||
-TARGETS = $(patsubst %.c,%,$(SRCS))
|
||||
+TARGETS =#$(patsubst %.c,%,$(SRCS))
|
||||
|
||||
all: $(TARGETS)
|
||||
|
||||
diff -ur ltp-full-20061121/testcases/kernel/syscalls/getcontext/Makefile ltp-full-20061121-patched/testcases/kernel/syscalls/getcontext/Makefile
|
||||
--- ltp-full-20061121/testcases/kernel/syscalls/getcontext/Makefile 2006-11-21 14:31:27.000000000 -0600
|
||||
+++ ltp-full-20061121-patched/testcases/kernel/syscalls/getcontext/Makefile 2006-12-02 00:16:50.072004501 -0600
|
||||
@@ -20,7 +20,7 @@
|
||||
LDLIBS += -L../../../../lib -lltp
|
||||
|
||||
SRCS = $(wildcard *.c)
|
||||
-TARGETS = $(patsubst %.c,%,$(SRCS))
|
||||
+TARGETS =#$(patsubst %.c,%,$(SRCS))
|
||||
|
||||
all: $(TARGETS)
|
||||
|
||||
diff -ur ltp-full-20061121/testcases/kernel/syscalls/profil/Makefile ltp-full-20061121-patched/testcases/kernel/syscalls/profil/Makefile
|
||||
--- ltp-full-20061121/testcases/kernel/syscalls/profil/Makefile 2006-11-21 14:31:28.000000000 -0600
|
||||
+++ ltp-full-20061121-patched/testcases/kernel/syscalls/profil/Makefile 2006-12-02 00:17:03.301059744 -0600
|
||||
@@ -20,7 +20,7 @@
|
||||
LDLIBS += -L../../../../lib -lltp
|
||||
|
||||
SRCS = $(wildcard *.c)
|
||||
-TARGETS = $(patsubst %.c,%,$(SRCS))
|
||||
+TARGETS =#$(patsubst %.c,%,$(SRCS))
|
||||
|
||||
all: $(TARGETS)
|
||||
|
||||
diff -ur ltp-full-20061121/testcases/kernel/syscalls/pselect/Makefile ltp-full-20061121-patched/testcases/kernel/syscalls/pselect/Makefile
|
||||
--- ltp-full-20061121/testcases/kernel/syscalls/pselect/Makefile 2006-11-21 14:31:29.000000000 -0600
|
||||
+++ ltp-full-20061121-patched/testcases/kernel/syscalls/pselect/Makefile 2006-12-02 00:17:14.661965984 -0600
|
||||
@@ -20,7 +20,7 @@
|
||||
LDLIBS += -L../../../../lib -lltp
|
||||
|
||||
SRCS = $(wildcard *.c)
|
||||
-TARGETS = $(patsubst %.c,%,$(SRCS))
|
||||
+TARGETS =#$(patsubst %.c,%,$(SRCS))
|
||||
|
||||
all: $(TARGETS)
|
||||
|
||||
diff -ur ltp-full-20061121/testcases/kernel/syscalls/swapon/swapon02.c ltp-full-20061121-patched/testcases/kernel/syscalls/swapon/swapon02.c
|
||||
--- ltp-full-20061121/testcases/kernel/syscalls/swapon/swapon02.c 2006-11-21 14:31:29.000000000 -0600
|
||||
+++ ltp-full-20061121-patched/testcases/kernel/syscalls/swapon/swapon02.c 2006-12-02 00:18:12.422573631 -0600
|
||||
@@ -85,9 +85,7 @@
|
||||
#include <sys/wait.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/swap.h>
|
||||
-#ifdef OLDER_DISTRO_RELEASE
|
||||
-#include <linux/swap.h>
|
||||
-#endif
|
||||
+#define MAX_SWAPFILES 32
|
||||
#include <fcntl.h>
|
||||
#include <pwd.h>
|
||||
#include <string.h>
|
||||
@@ -96,10 +94,6 @@
|
||||
#include "test.h"
|
||||
#include "usctest.h"
|
||||
|
||||
-#ifndef OLDER_DISTRO_RELEASE
|
||||
-#define MAX_SWAPFILES 32
|
||||
-#endif
|
||||
-
|
||||
static void setup();
|
||||
static void cleanup();
|
||||
static int setup01();
|
Loading…
Reference in New Issue
Block a user