unitest.ini

Target Deployment Technology

Template: any template

Copy all unitest.ini settings into the Basic Settings section of the TDP Editor.

Environment Variables

In the old TDP, the following line inserted the string "Value;" in the front of the current value of X:

ENV_X="Value; "

 

In the new TDP, the same syntax would set x equal to "Value; ". The new, proper syntax for insertion or concatenation is either:

ENV_X="Value;$ENV{'X'}"

or

ENV_X="$ENV{'X'};Value"

 

This concatenation and insertion algorithm is also valid for simple $Ini fields.

Additionally, the following line now sets <Value> to X if X is not defined in the environment:

ENV_SET_IF_NOT_SET_X="<Value>"

 

Other Changes

The following fields are no longer used and can be deleted:

COMPILERVER=""

CCSCRIPT="atl_cc.pl"

LDSCRIPT="atl_link.pl"

EXESCRIPT="atl_exec.pl"

STDFILE="atl_cc.def"