ref: f8935b5778397074d41a48205e5c7f87d7b531fe
dir: /opt/skel/appl/lib/t/smoke.b/
implement T; include "opt/powerman/tap/module/t.m"; include "../../../module/examplelib.m"; examplelib: ExampleLib; test() { plan(1); examplelib = load ExampleLib ExampleLib->PATH; if(examplelib == nil) bail_out(sprint("load %s: %r",ExampleLib->PATH)); { examplelib->init(); } exception e { "*"=>catched(e); } raised(nil, "init() doesn't raise"); }