Files
ww/test/package/runtime/signal_test.ww
Hojun-Cho 7a2c21acfb wwtest: native package-test coordinator
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.
2026-08-07 23:01:03 +09:00

8 lines
119 B
Plaintext

package runtime_signal_test;
import os;
@test fn signal_is_not_exit() void = {
os.kill(os.getpid(), os.SIGTERM);
};