Home | History | Annotate | Download | only in tools

Lines Matching defs:ok

8 // ok is an experimental test harness, maybe to replace DM.  Key features:
10 // * ok is entirely opt-in. No more maintaining huge --blacklists.
14 #include "ok.h"
85 enum class Status { OK, Failed, Crashed, Skipped, None };
293 int ok = 0, failed = 0, crashed = 0, skipped = 0;
297 case Status::OK: ok++; break;
310 print(ok, "ok");
349 return Status::OK;
353 for (Status s = Status::OK; s != Status::None; ) {