Single-directory package-test planner: discovers *.ww, groups white-box and external <pkg>_test sources, composes the combined test package, builds it through the sibling ww driver, and runs it with the runtime's -package/-list/-timeout-ms contract. test/package holds its E2E corpus and the manual runtime fixture set.
6 lines
196 B
Plaintext
6 lines
196 B
Plaintext
package multi_fail_test;
|
|
|
|
@test fn first_failure() void = { assert(false); };
|
|
@test fn second_failure() void = { assert(false); };
|
|
@test fn continuation_after_failures() void = { assert(true); };
|