On 5/8/2015 5:25 PM, Andrei Alexandrescu wrote:
It's goofy to run the program after unittests,

Goofy, maybe, but it makes things simpler. For anyone who is actually bothered by it, the fix is a one liner:

  int main(string args)
  {
    version (unittest) exit(0); // <== insert this line
    ...
  }

Reply via email to