blob: 22913d565ea944bbe7d82df275d5f933514271b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Test reversibility of variable representation.
#
val = -L/
val += -L/foo/
#val += dir{-L/}
val += foo%bar
val += foo%
val += %bar
val += foo%{bar}
#val += foo%file{x}
using cxx
cxx.ext = cxx
exe{driver}: cxx{driver}
exe{driver}: test.output = test.out
exe{driver}: test.options = $val
|