summaryrefslogtreecommitdiff
path: root/tools/build/v2/test/engine/stress_var_expand.jam
blob: e76b36ab35e28acec7e9c6960aaa8ca73b80c039 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#~ Copyright 2006 Rene Rivera.
#~ Distributed under the Boost Software License, Version 1.0.
#~ (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)

ECHO --- Testing var expansion... ;

local i = 0 ;
local v = one two ;
while $(i) != 4
{
    i = [ CALC $(i) + 1 ] ;
    v = $(v)$(v) ;
    assert $(i) : (==) : $(i) ;
}