schema_version string | iteration int64 | objective string | tasks list | preserve list | validation_conditions list |
|---|---|---|---|---|---|
hoh-repro-0.2 | 1 | Implement basic command-line argument parsing and help message display for the figlet executable. | [
"Parse basic command line options like -h, --help, -v, --version",
"Display help message when -h or --help is provided",
"Display version information when -v or --version is provided",
"Ensure all existing functionality remains intact"
] | [
"Executable runs without error when given no arguments",
"Executable accepts text input from command line",
"Executable reads from stdin when no text is provided",
"Version information can be retrieved with -I 1 flag"
] | [
"Running 'executable --help' displays the help message",
"Running 'executable -h' displays the help message",
"Running 'executable --version' displays version information",
"Running 'executable -v' displays version information",
"Running 'executable' without arguments still works as before"
] |
hoh-repro-0.2 | 1 | Create a basic build system for the FIGlet project that can compile the source files into an executable binary. | [
"Analyze the existing source files and their dependencies",
"Create a Makefile that compiles all necessary source files",
"Verify that the resulting executable matches the behavior of the reference executable",
"Ensure the build system supports basic compilation flags and options"
] | [
"The executable should support the same command line interface as the reference",
"The executable should produce identical output for basic inputs",
"The executable should handle standard font loading from the fonts/ directory"
] | [
"The built executable produces the same output as the reference for basic 'Hello' input",
"The built executable accepts the same command line options as the reference",
"The built executable can load fonts from the fonts/ directory"
] |
hoh-repro-0.2 | 1 | Implement basic command-line argument parsing and help message display for the FIGlet executable. | [
"Parse basic command line options like -h, --help, -I for information",
"Display help message when -h or --help is provided",
"Handle -I flag to show version and license information",
"Ensure existing functionality remains intact"
] | [
"Executable should respond to -I 0 with version and license information",
"Executable should accept a message as positional argument",
"Basic usage pattern should work: executable [message]"
] | [
"Running executable without arguments should show usage",
"Running executable -h should display help message",
"Running executable --help should display help message",
"Running executable -I 0 should display version and license info"
] |
No dataset card yet
- Downloads last month
- 179