cregit-Linux how code gets into the kernel

Release 4.10 tools/testing/selftests/powerpc/include/subunit.h

/*
 * 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); }

Contributors

PersonTokensPropCommitsCommitProp
michael ellermanmichael ellerman18100.00%1100.00%
Total18100.00%1100.00%


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

Contributors

PersonTokensPropCommitsCommitProp
michael ellermanmichael ellerman24100.00%1100.00%
Total24100.00%1100.00%


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

Contributors

PersonTokensPropCommitsCommitProp
michael ellermanmichael ellerman18100.00%1100.00%
Total18100.00%1100.00%


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

Contributors

PersonTokensPropCommitsCommitProp
michael ellermanmichael ellerman18100.00%1100.00%
Total18100.00%1100.00%


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

Contributors

PersonTokensPropCommitsCommitProp
michael ellermanmichael ellerman18100.00%1100.00%
Total18100.00%1100.00%


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

Contributors

PersonTokensPropCommitsCommitProp
michael ellermanmichael ellerman18100.00%1100.00%
Total18100.00%1100.00%


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

Contributors

PersonTokensPropCommitsCommitProp
michael ellermanmichael ellerman29100.00%1100.00%
Total29100.00%1100.00%


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

Contributors

PersonTokensPropCommitsCommitProp
michael ellermanmichael ellerman18100.00%1100.00%
Total18100.00%1100.00%

#endif /* _SELFTESTS_POWERPC_SUBUNIT_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
michael ellermanmichael ellerman171100.00%2100.00%
Total171100.00%2100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.