mirror of
https://github.com/boostorg/build.git
synced 2026-02-16 01:12:13 +00:00
Updated the Boost Build core_arguments.py test to test all of the supported 19 Boost Jam positional arguments instead of only 9.
[SVN r78984]
This commit is contained in:
@@ -8,6 +8,10 @@
|
||||
import BoostBuild
|
||||
|
||||
|
||||
def simple_args(start, finish):
|
||||
return " : ".join("%d" % x for x in xrange(start, finish + 1))
|
||||
|
||||
|
||||
def test(t, type, input, output, status=0):
|
||||
code = ["include echo_args.jam ; echo_%s" % type]
|
||||
if input: code.append(input)
|
||||
@@ -38,12 +42,14 @@ rule echo_args ( a b ? c ? : d + : e * )
|
||||
rule echo_varargs ( a b ? c ? : d + : e * : * )
|
||||
{
|
||||
ECHO a= $(a) b= $(b) c= $(c) ":" d= $(d) ":" e= $(e)
|
||||
": rest= "$(4[1]) $(4[2])
|
||||
": "$(5[1]) $(5[2])
|
||||
": "$(6[1]) $(6[2])
|
||||
": "$(7[1]) $(7[2])
|
||||
": "$(8[1]) $(8[2])
|
||||
": "$(9[1]) $(9[2]) ;
|
||||
": rest= "$(4[1]) $(4[2-])
|
||||
": "$(5[1]) $(5[2-]) ": "$(6[1]) $(6[2-]) ": "$(7[1]) $(7[2-])
|
||||
": "$(8[1]) $(8[2-]) ": "$(9[1]) $(9[2-]) ": "$(10[1]) $(10[2-])
|
||||
": "$(11[1]) $(11[2-]) ": "$(12[1]) $(12[2-]) ": "$(13[1]) $(13[2-])
|
||||
": "$(14[1]) $(14[2-]) ": "$(15[1]) $(15[2-]) ": "$(16[1]) $(16[2-])
|
||||
": "$(17[1]) $(17[2-]) ": "$(18[1]) $(18[2-]) ": "$(19[1]) $(19[2-])
|
||||
": "$(20[1]) $(20[2-]) ": "$(21[1]) $(21[2-]) ": "$(22[1]) $(22[2-])
|
||||
": "$(23[1]) $(23[2-]) ": "$(24[1]) $(24[2-]) ": "$(25[1]) $(25[2-]) ;
|
||||
}
|
||||
""")
|
||||
|
||||
@@ -76,5 +82,21 @@ test_varargs(t, "1 : 2 : 3 4 5 : 6 7 : 8",
|
||||
"a= 1 b= c= : d= 2 : e= 3 4 5 : rest= 6 7 : 8")
|
||||
test_varargs(t, "1 : 2 : 3 4 5 : 6 7 : 8 : 9",
|
||||
"a= 1 b= c= : d= 2 : e= 3 4 5 : rest= 6 7 : 8 : 9")
|
||||
test_varargs(t, "1 : 2 : 3 4 5 : 6 7 : 8 : 9 : 10 : 11 : 12 : 13 : 14 : 15 : "
|
||||
"16 : 17 : 18 : 19a 19b", "a= 1 b= c= : d= 2 : e= 3 4 5 : rest= 6 7 : 8 : "
|
||||
"9 : 10 : 11 : 12 : 13 : 14 : 15 : 16 : 17 : 18 : 19a 19b")
|
||||
test_varargs(t, "1 : 2 : 3 4 5 : 6 7 : 8 : 9 : 10 : 11 : 12 : 13 : 14 : 15 : "
|
||||
"16 : 17 : 18 : 19a 19b 19c : 20", "a= 1 b= c= : d= 2 : e= 3 4 5 : rest= "
|
||||
"6 7 : 8 : 9 : 10 : 11 : 12 : 13 : 14 : 15 : 16 : 17 : 18 : 19a 19b 19c : "
|
||||
"20 ")
|
||||
|
||||
# Check varargs upper limit
|
||||
expected = "a= 1 b= c= : d= 2 : e= 3 : rest= " + simple_args(4, 19)
|
||||
test_varargs(t, simple_args(1, 19), expected)
|
||||
test_varargs(t, simple_args(1, 19) + " 19b 19c 19d", expected + " 19b 19c 19d")
|
||||
test_varargs(t, simple_args(1, 19) + " 19b 19c 19d : 20", expected + " 19b "
|
||||
"19c 19d")
|
||||
test_varargs(t, simple_args(1, 20), expected)
|
||||
test_varargs(t, simple_args(1, 50), expected)
|
||||
|
||||
t.cleanup()
|
||||
|
||||
Reference in New Issue
Block a user