xref: /freebsd/contrib/libxo/tests/xo/xo_01.sh (revision d6b92ffa)
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
11XO=$1
12shift
13
14XOP="${XO} --warn --depth 1 --leading-xpath /top"
15
16${XO} --open top
17
18NF=
19for 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
25done
26
27${XO} --close top