summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/powerpc/include/subunit.h
blob: 9c6c4e901ab617671c669315bcc62280362b9104 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
 * Copyright 2013, Michael Ellerman, IBM Corp.
 * Licensed under GPLv2.
 */

#ifndef _SELFTESTS_POWERPC_SUBUNIT_H
#define _SELFTESTS_POWERPC_SUBUNIT_H

static inline void test_start(char *name)
{
	printf("test: %s\n", name);
}

static inline void test_failure_detail(char *name, char *detail)
{
	printf("failure: %s [%s]\n", name, detail);
}

static inline void test_failure(char *name)
{
	printf("failure: %s\n", name);
}

static inline void test_error(char *name)
{
	printf("error: %s\n", name);
}

static inline void test_skip(char *name)
{
	printf("skip: %s\n", name);
}

static inline void test_success(char *name)
{
	printf("success: %s\n", name);
}

static inline void test_finish(char *name, int status)
{
	if (status)
		test_failure(name);
	else
		test_success(name);
}

static inline void test_set_git_version(char *value)
{
	printf("tags: git_version:%s\n", value);
}

#endif /* _SELFTESTS_POWERPC_SUBUNIT_H */
t.git/diff/drivers/usb/image/Kconfig?h=nds-private-remove&id=99421c1cb27fb837e93b517036fab4500fe39de5&id2=93362fa47fe98b62e4a34ab408c4a418432e7939'>diff)
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace
Pull namespace fixes from Eric Biederman: "This tree contains 4 fixes. The first is a fix for a race that can causes oopses under the right circumstances, and that someone just recently encountered. Past that are several small trivial correct fixes. A real issue that was blocking development of an out of tree driver, but does not appear to have caused any actual problems for in-tree code. A potential deadlock that was reported by lockdep. And a deadlock people have experienced and took the time to track down caused by a cleanup that removed the code to drop a reference count" * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebiederm/user-namespace: sysctl: Drop reference added by grab_header in proc_sys_readdir pid: fix lockdep deadlock warning due to ucount_lock libfs: Modify mount_pseudo_xattr to be clear it is not a userspace mount mnt: Protect the mountpoint hashtable with mount_lock
Diffstat (limited to 'drivers/usb/image/Kconfig')