digitalmars.D.learn - [D1, unittest] Cannot turn on unittest version
See subject^^ And why does the spec say that -unittest turns on asserts? http://www.digitalmars.com/d/1.0/dmd-windows.html#switches -unittest compile in unittest code, turns on asserts, and sets the unittest version identifier http://www.digitalmars.com/d/1.0/unittest.html The version identifier unittest is predefined if the compilation is done with unit tests enabled. dmd -unittest -- import std.stdio; void main(){ auto a = false; version (unittest){ // identifier or integer expected, not unittest. D_unittest compiles, but still fails. writefln("a:",a); } assert(a); // assert is on, even without -unittest } unittest{ auto b = true; writefln("b:",b); }
Oct 21 2010
%u wrote:See subject^^ And why does the spec say that -unittest turns on asserts? http://www.digitalmars.com/d/1.0/dmd-windows.html#switches -unittest compile in unittest code, turns on asserts, and sets the unittest version identifier http://www.digitalmars.com/d/1.0/unittest.html The version identifier unittest is predefined if the compilation is done with unit tests enabled.That's true in D2 only. Shouldn't be in the D1 spec.
Oct 21 2010
== Quote from Don (nospam nospam.com)'s articleThat's true in D2 only. Shouldn't be in the D1 spec.filed ;)
Oct 21 2010