]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/libxo/tests/xo/xo_01.sh
Merge lldb trunk r300422 and resolve conflicts.
[FreeBSD/FreeBSD.git] / contrib / libxo / tests / xo / xo_01.sh
1 #
2 # $Id$
3 #
4 # Copyright 2014, Juniper Networks, Inc.
5 # All rights reserved.
6 # This SOFTWARE is licensed under the LICENSE provided in the
7 # ../Copyright file. By downloading, installing, copying, or otherwise
8 # using the SOFTWARE, you agree to be bound by the terms of that
9 # LICENSE.
10
11 XO=$1
12 shift
13
14 XOP="${XO} --warn --depth 1 --leading-xpath /top"
15
16 ${XO} --open top
17
18 NF=
19 for i in one:1:red two:2:blue three:3:green four:4:yellow ; do
20     set `echo $i | sed 's/:/ /g'`
21     ${XOP} ${NF} --wrap item \
22         'Item {k:name} is {Lw:number}{:value/%03d/%d}, {Lwc:color}{:color}\n' \
23          $1 $2 $3
24     NF=--not-first
25 done
26
27 ${XO} --close top