tools/testing/selftests/powerpc/include/subunit.h
Source file repositories/reference/linux-study-clean/tools/testing/selftests/powerpc/include/subunit.h
File Facts
- System
- Linux kernel
- Corpus path
tools/testing/selftests/powerpc/include/subunit.h- Extension
.h- Size
- 998 bytes
- Lines
- 53
- Domain
- Support Tooling And Documentation
- Bucket
- tools
- Inferred role
- Support Tooling And Documentation: implementation source
- Status
- source implementation candidate
Why This File Exists
Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
Dependency Surface
- No C-style include directives detected by the generator.
Detected Declarations
function test_startfunction test_failure_detailfunction test_failurefunction test_errorfunction test_skipfunction test_successfunction test_finishfunction test_set_git_version
Annotated Snippet
#ifndef _SELFTESTS_POWERPC_SUBUNIT_H
#define _SELFTESTS_POWERPC_SUBUNIT_H
static inline void test_start(const char *name)
{
printf("test: %s\n", name);
}
static inline void test_failure_detail(const char *name, const char *detail)
{
printf("failure: %s [%s]\n", name, detail);
}
static inline void test_failure(const char *name)
{
printf("failure: %s\n", name);
}
static inline void test_error(const char *name)
{
printf("error: %s\n", name);
}
static inline void test_skip(const char *name)
{
printf("skip: %s\n", name);
}
static inline void test_success(const char *name)
{
printf("success: %s\n", name);
}
static inline void test_finish(const char *name, int status)
{
if (status)
test_failure(name);
else
test_success(name);
}
static inline void test_set_git_version(const char *value)
{
printf("tags: git_version:%s\n", value);
}
#endif /* _SELFTESTS_POWERPC_SUBUNIT_H */
Annotation
- Detected declarations: `function test_start`, `function test_failure_detail`, `function test_failure`, `function test_error`, `function test_skip`, `function test_success`, `function test_finish`, `function test_set_git_version`.
- Atlas domain: Support Tooling And Documentation / tools.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.