integration-test-authoring
CommunityBuild robust kernel tests, ensure stability.
System Documentation
What problem does it solve?
Creating reliable integration tests for operating system kernels is challenging due to the need for QEMU virtualization, specific boot sequences, and precise signal detection. This Skill provides a structured approach to authoring these tests, ensuring new kernel features are thoroughly validated.
Core Features & Use Cases
- Shared QEMU Testing: Leverage a shared QEMU instance for faster, more efficient test execution across multiple kernel features.
- Checkpoint Signals: Define and monitor specific log signals to verify kernel behavior and test completion.
- Use Case: You've implemented a new memory management feature in Breenix. Use this Skill to quickly set up a kernel-side test, define a completion signal, and integrate it into the existing shared QEMU test suite, ensuring your changes don't introduce regressions.
Quick Start
Kernel-side test code snippet
#[cfg(feature = "testing")] pub fn test_my_feature() { use crate::serial::serial_println; serial_println!("✅ MY_FEATURE TEST COMPLETE"); }
Rust integration test snippet
#[test] fn test_my_feature() { shared_qemu::run_test( "my_feature", "✅ MY_FEATURE TEST COMPLETE" ); }
Dependency Matrix
Required Modules
None requiredComponents
Standard package💻 Claude Code Installation
Recommended: Let Claude install automatically. Simply copy and paste the text below to Claude Code.
Please help me install this Skill: Name: integration-test-authoring Download link: https://github.com/ryanbreen/breenix/archive/main.zip#integration-test-authoring Please download this .zip file, extract it, and install it in the .claude/skills/ directory.
Agent Skills Search Helper
Install a tiny helper to your Agent, search and equip skill from 223,000+ vetted skills library on demand.