Skip to content

Commit

Permalink
Merge tag 'linux-kselftest-3.19-rc1' of git://git.kernel.org/pub/scm/…
Browse files Browse the repository at this point in the history
…linux/kernel/git/shuah/linux-kselftest

Pull kselftest update from Shuah Khan:
 "kselftest updates for 3.19-rc1:

   - kcmp test include file cleanup
   - kcmp change to build on all architectures
   - A light weight kselftest framework that provides a set of
     interfaces for tests to use to report results.  In addition,
     several tests are updated to use the framework.
   - A new runtime system size test that prints the amount of RAM that
     the currently running system is using"

* tag 'linux-kselftest-3.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest:
  selftest: size: Add size test for Linux kernel
  selftests/kcmp: Always try to build the test
  selftests/kcmp: Don't include kernel headers
  kcmp: Move kcmp.h into uapi
  selftests/timers: change test to use ksft framework
  selftests/kcmp: change test to use ksft framework
  selftests/ipc: change test to use ksft framework
  selftests/breakpoints: change test to use ksft framework
  selftests: add kselftest framework for uniform test reporting
  selftests/user: move test out of Makefile into a shell script
  selftests/net: move test out of Makefile into a shell script
  • Loading branch information
torvalds committed Dec 16, 2014
2 parents a7c180a + 3ce5105 commit 61de8e5
Show file tree
Hide file tree
Showing 16 changed files with 252 additions and 66 deletions.
1 change: 1 addition & 0 deletions include/uapi/linux/Kbuild
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ header-y += ivtv.h
header-y += ixjuser.h
header-y += jffs2.h
header-y += joystick.h
header-y += kcmp.h
header-y += kdev_t.h
header-y += kd.h
header-y += kernelcapi.h
Expand Down
6 changes: 3 additions & 3 deletions include/linux/kcmp.h → include/uapi/linux/kcmp.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef _LINUX_KCMP_H
#define _LINUX_KCMP_H
#ifndef _UAPI_LINUX_KCMP_H
#define _UAPI_LINUX_KCMP_H

/* Comparison type */
enum kcmp_type {
Expand All @@ -14,4 +14,4 @@ enum kcmp_type {
KCMP_TYPES,
};

#endif /* _LINUX_KCMP_H */
#endif /* _UAPI_LINUX_KCMP_H */
1 change: 1 addition & 0 deletions tools/testing/selftests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ TARGETS += sysctl
TARGETS += firmware
TARGETS += ftrace
TARGETS += exec
TARGETS += size

TARGETS_HOTPLUG = cpu-hotplug
TARGETS_HOTPLUG += memory-hotplug
Expand Down
10 changes: 6 additions & 4 deletions tools/testing/selftests/breakpoints/breakpoint_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
#include <sys/types.h>
#include <sys/wait.h>

#include "../kselftest.h"


/* Breakpoint access modes */
enum {
Expand All @@ -42,7 +44,7 @@ static void set_breakpoint_addr(void *addr, int n)
offsetof(struct user, u_debugreg[n]), addr);
if (ret) {
perror("Can't set breakpoint addr\n");
exit(-1);
ksft_exit_fail();
}
}

Expand Down Expand Up @@ -105,7 +107,7 @@ static void toggle_breakpoint(int n, int type, int len,
offsetof(struct user, u_debugreg[7]), dr7);
if (ret) {
perror("Can't set dr7");
exit(-1);
ksft_exit_fail();
}
}

Expand Down Expand Up @@ -275,7 +277,7 @@ static void check_success(const char *msg)
msg2 = "Ok";
if (ptrace(PTRACE_POKEDATA, child_pid, &trapped, 1)) {
perror("Can't poke\n");
exit(-1);
ksft_exit_fail();
}
}

Expand Down Expand Up @@ -390,5 +392,5 @@ int main(int argc, char **argv)

wait(NULL);

return 0;
return ksft_exit_pass();
}
26 changes: 14 additions & 12 deletions tools/testing/selftests/ipc/msgque.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
#include <linux/msg.h>
#include <fcntl.h>

#include "../kselftest.h"

#define MAX_MSG_SIZE 32

struct msg1 {
Expand Down Expand Up @@ -195,58 +197,58 @@ int main(int argc, char **argv)

if (getuid() != 0) {
printf("Please run the test as root - Exiting.\n");
exit(1);
return ksft_exit_fail();
}

msgque.key = ftok(argv[0], 822155650);
if (msgque.key == -1) {
printf("Can't make key\n");
return -errno;
printf("Can't make key: %d\n", -errno);
return ksft_exit_fail();
}

msgque.msq_id = msgget(msgque.key, IPC_CREAT | IPC_EXCL | 0666);
if (msgque.msq_id == -1) {
err = -errno;
printf("Can't create queue\n");
printf("Can't create queue: %d\n", err);
goto err_out;
}

err = fill_msgque(&msgque);
if (err) {
printf("Failed to fill queue\n");
printf("Failed to fill queue: %d\n", err);
goto err_destroy;
}

err = dump_queue(&msgque);
if (err) {
printf("Failed to dump queue\n");
printf("Failed to dump queue: %d\n", err);
goto err_destroy;
}

err = check_and_destroy_queue(&msgque);
if (err) {
printf("Failed to check and destroy queue\n");
printf("Failed to check and destroy queue: %d\n", err);
goto err_out;
}

err = restore_queue(&msgque);
if (err) {
printf("Failed to restore queue\n");
printf("Failed to restore queue: %d\n", err);
goto err_destroy;
}

err = check_and_destroy_queue(&msgque);
if (err) {
printf("Failed to test queue\n");
printf("Failed to test queue: %d\n", err);
goto err_out;
}
return 0;
return ksft_exit_pass();

err_destroy:
if (msgctl(msgque.msq_id, IPC_RMID, 0)) {
printf("Failed to destroy queue: %d\n", -errno);
return -errno;
return ksft_exit_fail();
}
err_out:
return err;
return ksft_exit_fail();
}
22 changes: 2 additions & 20 deletions tools/testing/selftests/kcmp/Makefile
Original file line number Diff line number Diff line change
@@ -1,25 +1,7 @@
uname_M := $(shell uname -m 2>/dev/null || echo not)
ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/)
ifeq ($(ARCH),i386)
ARCH := x86
CFLAGS := -DCONFIG_X86_32 -D__i386__
endif
ifeq ($(ARCH),x86_64)
ARCH := x86
CFLAGS := -DCONFIG_X86_64 -D__x86_64__
endif

CFLAGS += -I../../../../arch/x86/include/generated/
CFLAGS += -I../../../../include/
CC := $(CROSS_COMPILE)$(CC)
CFLAGS += -I../../../../usr/include/
CFLAGS += -I../../../../arch/x86/include/

all:
ifeq ($(ARCH),x86)
gcc $(CFLAGS) kcmp_test.c -o kcmp_test
else
echo "Not an x86 target, can't build kcmp selftest"
endif
all: kcmp_test

run_tests: all
@./kcmp_test || echo "kcmp_test: [FAIL]"
Expand Down
27 changes: 20 additions & 7 deletions tools/testing/selftests/kcmp/kcmp_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
#include <sys/stat.h>
#include <sys/wait.h>

#include "../kselftest.h"

static long sys_kcmp(int pid1, int pid2, int type, int fd1, int fd2)
{
return syscall(__NR_kcmp, pid1, pid2, type, fd1, fd2);
Expand All @@ -34,13 +36,13 @@ int main(int argc, char **argv)

if (fd1 < 0) {
perror("Can't create file");
exit(1);
ksft_exit_fail();
}

pid2 = fork();
if (pid2 < 0) {
perror("fork failed");
exit(1);
ksft_exit_fail();
}

if (!pid2) {
Expand All @@ -50,7 +52,7 @@ int main(int argc, char **argv)
fd2 = open(kpath, O_RDWR, 0644);
if (fd2 < 0) {
perror("Can't open file");
exit(1);
ksft_exit_fail();
}

/* An example of output and arguments */
Expand All @@ -74,23 +76,34 @@ int main(int argc, char **argv)
if (ret) {
printf("FAIL: 0 expected but %d returned (%s)\n",
ret, strerror(errno));
ksft_inc_fail_cnt();
ret = -1;
} else
} else {
printf("PASS: 0 returned as expected\n");
ksft_inc_pass_cnt();
}

/* Compare with self */
ret = sys_kcmp(pid1, pid1, KCMP_VM, 0, 0);
if (ret) {
printf("FAIL: 0 expected but %d returned (%s)\n",
ret, strerror(errno));
ksft_inc_fail_cnt();
ret = -1;
} else
} else {
printf("PASS: 0 returned as expected\n");
ksft_inc_pass_cnt();
}

ksft_print_cnts();

exit(ret);
if (ret)
ksft_exit_fail();
else
ksft_exit_pass();
}

waitpid(pid2, &status, P_ALL);

return 0;
return ksft_exit_pass();
}
62 changes: 62 additions & 0 deletions tools/testing/selftests/kselftest.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
/*
* kselftest.h: kselftest framework return codes to include from
* selftests.
*
* Copyright (c) 2014 Shuah Khan <[email protected]>
* Copyright (c) 2014 Samsung Electronics Co., Ltd.
*
* This file is released under the GPLv2.
*/
#ifndef __KSELFTEST_H
#define __KSELFTEST_H

#include <stdlib.h>
#include <unistd.h>

/* counters */
struct ksft_count {
unsigned int ksft_pass;
unsigned int ksft_fail;
unsigned int ksft_xfail;
unsigned int ksft_xpass;
unsigned int ksft_xskip;
};

static struct ksft_count ksft_cnt;

static inline void ksft_inc_pass_cnt(void) { ksft_cnt.ksft_pass++; }
static inline void ksft_inc_fail_cnt(void) { ksft_cnt.ksft_fail++; }
static inline void ksft_inc_xfail_cnt(void) { ksft_cnt.ksft_xfail++; }
static inline void ksft_inc_xpass_cnt(void) { ksft_cnt.ksft_xpass++; }
static inline void ksft_inc_xskip_cnt(void) { ksft_cnt.ksft_xskip++; }

static inline void ksft_print_cnts(void)
{
printf("Pass: %d Fail: %d Xfail: %d Xpass: %d, Xskip: %d\n",
ksft_cnt.ksft_pass, ksft_cnt.ksft_fail,
ksft_cnt.ksft_xfail, ksft_cnt.ksft_xpass,
ksft_cnt.ksft_xskip);
}

static inline int ksft_exit_pass(void)
{
exit(0);
}
static inline int ksft_exit_fail(void)
{
exit(1);
}
static inline int ksft_exit_xfail(void)
{
exit(2);
}
static inline int ksft_exit_xpass(void)
{
exit(3);
}
static inline int ksft_exit_skip(void)
{
exit(4);
}

#endif /* __KSELFTEST_H */
8 changes: 1 addition & 7 deletions tools/testing/selftests/net/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,6 @@ all: $(NET_PROGS)
run_tests: all
@/bin/sh ./run_netsocktests || echo "sockettests: [FAIL]"
@/bin/sh ./run_afpackettests || echo "afpackettests: [FAIL]"
@if /sbin/modprobe test_bpf ; then \
/sbin/rmmod test_bpf; \
echo "test_bpf: ok"; \
else \
echo "test_bpf: [FAIL]"; \
exit 1; \
fi
./test_bpf.sh
clean:
$(RM) $(NET_PROGS)
10 changes: 10 additions & 0 deletions tools/testing/selftests/net/test_bpf.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/sh
# Runs bpf test using test_bpf kernel module

if /sbin/modprobe -q test_bpf ; then
/sbin/modprobe -q -r test_bpf;
echo "test_bpf: ok";
else
echo "test_bpf: [FAIL]";
exit 1;
fi
1 change: 1 addition & 0 deletions tools/testing/selftests/size/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
get_size
12 changes: 12 additions & 0 deletions tools/testing/selftests/size/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
CC = $(CROSS_COMPILE)gcc

all: get_size

get_size: get_size.c
$(CC) -static -ffreestanding -nostartfiles -s $< -o $@

run_tests: all
./get_size

clean:
$(RM) get_size
Loading

0 comments on commit 61de8e5

Please sign in to comment.