From e08c2d2e0e8e0635aee83db58e560a0fc924acfc Mon Sep 17 00:00:00 2001 From: Wang Kirin Date: Thu, 30 May 2019 15:25:04 +0800 Subject: [PATCH] adjust path of testfile `bomtest.xml` to `resource/out` --- xmltest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 xmltest.cpp diff --git a/xmltest.cpp b/xmltest.cpp old mode 100644 new mode 100755 index a0aaee7..aba397a --- a/xmltest.cpp +++ b/xmltest.cpp @@ -1702,12 +1702,12 @@ int main( int argc, const char ** argv ) doc.Print( &printer ); XMLTest( "BOM preservation (compare)", xml_bom_preservation, printer.CStr(), false, true ); - doc.SaveFile( "resources/bomtest.xml" ); + doc.SaveFile( "resources/out/bomtest.xml" ); XMLTest( "Save bomtest.xml", false, doc.Error() ); } { XMLDocument doc; - doc.LoadFile( "resources/bomtest.xml" ); + doc.LoadFile( "resources/out/bomtest.xml" ); XMLTest( "Load bomtest.xml", false, doc.Error() ); XMLTest( "BOM preservation (load)", true, doc.HasBOM(), false );