source: branches/nanovis2/oldtest/src/octave/test_xml.m @ 3305

Last change on this file since 3305 was 3305, checked in by ldelgass, 11 years ago

sync with trunk

File size: 784 bytes
Line 
1% ----------------------------------------------------------------------
2%  TEST: Octave's Rappture Library Test Functions.
3%
4%   [err] = test_xml(lib)
5%
6%
7% ======================================================================
8%  AUTHOR:  Derrick Kearney, Purdue University
9%  Copyright (c) 2004-2012  HUBzero Foundation, LLC
10%
11%  See the file "license.terms" for information on usage and
12%  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
13% ======================================================================
14
15function [err] = test_xml(lib)
16    err = 1;
17    printf("\n\nTESTING rpLibXml\n");
18    [retStr,err] = rpLibXml(lib);
19    if !err
20        printf ("rpLibXml Successful: \n%s\n",retStr);
21    else
22        printf("Error within rpLibXml\n");
23    end
24end
Note: See TracBrowser for help on using the repository browser.