mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-18 22:26:32 +01:00
Added -table option to test executables. It outputs the results as a tab
seperated table, which can be pasted into spreadsheet/google docs/etc.
This commit is contained in:
parent
5870c68fa6
commit
07ef52f308
42 changed files with 2400 additions and 2079 deletions
|
@ -1,56 +1,56 @@
|
||||||
#ifndef ARABICA_XPATH_COMPILE_CONTEXT_HPP
|
#ifndef ARABICA_XPATH_COMPILE_CONTEXT_HPP
|
||||||
#define ARABICA_XPATH_COMPILE_CONTEXT_HPP
|
#define ARABICA_XPATH_COMPILE_CONTEXT_HPP
|
||||||
|
|
||||||
namespace Arabica
|
namespace Arabica
|
||||||
{
|
{
|
||||||
namespace XPath
|
namespace XPath
|
||||||
{
|
{
|
||||||
|
|
||||||
template<class string_type, class string_adaptor> class XPath;
|
template<class string_type, class string_adaptor> class XPath;
|
||||||
template<class string_type, class string_adaptor> class NamespaceContext;
|
template<class string_type, class string_adaptor> class NamespaceContext;
|
||||||
template<class string_type, class string_adaptor> class FunctionResolver;
|
template<class string_type, class string_adaptor> class FunctionResolver;
|
||||||
|
|
||||||
namespace impl
|
namespace impl
|
||||||
{
|
{
|
||||||
|
|
||||||
template<class string_type, class string_adaptor>
|
template<class string_type, class string_adaptor>
|
||||||
class CompilationContext : private NamespaceContext<string_type, string_adaptor>
|
class CompilationContext : private NamespaceContext<string_type, string_adaptor>
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CompilationContext(const XPath<string_type, string_adaptor>& xpathCompiler,
|
CompilationContext(const XPath<string_type, string_adaptor>& xpathCompiler,
|
||||||
const NamespaceContext<string_type, string_adaptor>& namespaceContext,
|
const NamespaceContext<string_type, string_adaptor>& namespaceContext,
|
||||||
const FunctionResolver<string_type, string_adaptor>& functionResolver) :
|
const FunctionResolver<string_type, string_adaptor>& functionResolver) :
|
||||||
xpath_(xpathCompiler),
|
xpath_(xpathCompiler),
|
||||||
namespaceContext_(namespaceContext),
|
namespaceContext_(namespaceContext),
|
||||||
functionResolver_(functionResolver)
|
functionResolver_(functionResolver)
|
||||||
{
|
{
|
||||||
} // CompilationContext
|
} // CompilationContext
|
||||||
|
|
||||||
const XPath<string_type, string_adaptor>& xpath() const { return xpath_; }
|
const XPath<string_type, string_adaptor>& xpath() const { return xpath_; }
|
||||||
const NamespaceContext<string_type, string_adaptor>& namespaceContext() const { return *this; }
|
const NamespaceContext<string_type, string_adaptor>& namespaceContext() const { return *this; }
|
||||||
const FunctionResolver<string_type, string_adaptor>& functionResolver() const { return functionResolver_; }
|
const FunctionResolver<string_type, string_adaptor>& functionResolver() const { return functionResolver_; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
virtual string_type namespaceURI(const string_type& prefix) const
|
virtual string_type namespaceURI(const string_type& prefix) const
|
||||||
{
|
{
|
||||||
string_type uri = namespaceContext_.namespaceURI(prefix);
|
string_type uri = namespaceContext_.namespaceURI(prefix);
|
||||||
if(string_adaptor::empty(uri))
|
if(string_adaptor::empty(uri))
|
||||||
throw Arabica::XPath::UnboundNamespacePrefixException(prefix);
|
throw Arabica::XPath::UnboundNamespacePrefixException(string_adaptor::asStdString(prefix));
|
||||||
return uri;
|
return uri;
|
||||||
} // namespaceURI
|
} // namespaceURI
|
||||||
|
|
||||||
|
|
||||||
const XPath<string_type, string_adaptor>& xpath_;
|
const XPath<string_type, string_adaptor>& xpath_;
|
||||||
const NamespaceContext<string_type, string_adaptor>& namespaceContext_;
|
const NamespaceContext<string_type, string_adaptor>& namespaceContext_;
|
||||||
const FunctionResolver<string_type, string_adaptor>& functionResolver_;
|
const FunctionResolver<string_type, string_adaptor>& functionResolver_;
|
||||||
|
|
||||||
CompilationContext(const CompilationContext&);
|
CompilationContext(const CompilationContext&);
|
||||||
CompilationContext& operator=(const CompilationContext&);
|
CompilationContext& operator=(const CompilationContext&);
|
||||||
bool operator==(const CompilationContext&) const;
|
bool operator==(const CompilationContext&) const;
|
||||||
}; // class CompilationContext
|
}; // class CompilationContext
|
||||||
|
|
||||||
} // namespace impl
|
} // namespace impl
|
||||||
} // namespace XPath
|
} // namespace XPath
|
||||||
} // namespace Arabica
|
} // namespace Arabica
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -379,7 +379,7 @@ private:
|
||||||
++node;
|
++node;
|
||||||
if(axis == ATTRIBUTE)
|
if(axis == ATTRIBUTE)
|
||||||
{
|
{
|
||||||
if(prefix == string_adaptor::construct("xmlns"))
|
if(prefix == string_adaptor::construct_from_utf8("xmlns"))
|
||||||
return new FailNodeTest<string_type, string_adaptor>();
|
return new FailNodeTest<string_type, string_adaptor>();
|
||||||
return new AttributeQNameNodeTest<string_type, string_adaptor>(uri, name);
|
return new AttributeQNameNodeTest<string_type, string_adaptor>(uri, name);
|
||||||
}
|
}
|
||||||
|
@ -392,7 +392,7 @@ private:
|
||||||
++node;
|
++node;
|
||||||
if(axis == ATTRIBUTE)
|
if(axis == ATTRIBUTE)
|
||||||
{
|
{
|
||||||
if(name == string_adaptor::construct("xmlns"))
|
if(name == string_adaptor::construct_from_utf8("xmlns"))
|
||||||
return new FailNodeTest<string_type, string_adaptor>();
|
return new FailNodeTest<string_type, string_adaptor>();
|
||||||
return new AttributeNameNodeTest<string_type, string_adaptor>(name);
|
return new AttributeNameNodeTest<string_type, string_adaptor>(name);
|
||||||
}
|
}
|
||||||
|
@ -456,7 +456,7 @@ private:
|
||||||
string_type uri = namespaceContext.namespaceURI(prefix);
|
string_type uri = namespaceContext.namespaceURI(prefix);
|
||||||
if(axis == ATTRIBUTE)
|
if(axis == ATTRIBUTE)
|
||||||
{
|
{
|
||||||
if(prefix == string_adaptor::construct("xmlns"))
|
if(prefix == string_adaptor::construct_from_utf8("xmlns"))
|
||||||
return new FailNodeTest<string_type, string_adaptor>();
|
return new FailNodeTest<string_type, string_adaptor>();
|
||||||
return new AttributeQStarNodeTest<string_type, string_adaptor>(uri);
|
return new AttributeQStarNodeTest<string_type, string_adaptor>(uri);
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,9 @@ cppunit_sources = framework/CppUnitException.h \
|
||||||
TestRunner.cpp \
|
TestRunner.cpp \
|
||||||
TestRunner.hpp \
|
TestRunner.hpp \
|
||||||
textui/TextTestResult.cpp \
|
textui/TextTestResult.cpp \
|
||||||
textui/TextTestResult.h
|
textui/TextTestResult.h \
|
||||||
|
textui/TableTestResult.cpp \
|
||||||
|
textui/TableTestResult.h
|
||||||
|
|
||||||
silly_string_sources = ../silly_string/silly_string.cpp \
|
silly_string_sources = ../silly_string/silly_string.cpp \
|
||||||
../silly_string/silly_string.hpp
|
../silly_string/silly_string.hpp
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
#include "TestRunner.hpp"
|
#include "TestRunner.hpp"
|
||||||
#include "textui/TextTestResult.h"
|
#include "textui/TextTestResult.h"
|
||||||
|
#include "textui/TableTestResult.hpp"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
//////////////////////////////////////////
|
//////////////////////////////////////////
|
||||||
|
@ -23,27 +24,43 @@ using namespace std;
|
||||||
typedef pair<string, Test *> mapping;
|
typedef pair<string, Test *> mapping;
|
||||||
typedef vector<pair<string, Test *> > mappings;
|
typedef vector<pair<string, Test *> > mappings;
|
||||||
|
|
||||||
|
template<typename result_type>
|
||||||
bool run(const string& name, Test *test, bool verbose)
|
bool run(const string& name, Test *test, bool verbose)
|
||||||
{
|
{
|
||||||
if(verbose)
|
if(verbose)
|
||||||
cout << "Running " << name << endl;
|
cout << "Running " << name << endl;
|
||||||
TextTestResult result(name, verbose);
|
result_type result(name, verbose);
|
||||||
test->run (&result);
|
test->run (&result);
|
||||||
cout << result;
|
cout << result;
|
||||||
return result.wasSuccessful();
|
return result.wasSuccessful();
|
||||||
} // run
|
} // run
|
||||||
|
|
||||||
|
bool textrun(const string& name, Test *test, bool verbose)
|
||||||
|
{
|
||||||
|
return run<TextTestResult>(name, test, verbose);
|
||||||
|
} // textrun
|
||||||
|
|
||||||
|
bool tablerun(const string& name, Test *test, bool verbose)
|
||||||
|
{
|
||||||
|
return run<TableTestResult>(name, test, verbose);
|
||||||
|
} // tablerun
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void printBanner ()
|
void printBanner ()
|
||||||
{
|
{
|
||||||
cout << "Usage: driver [-v] [ -wait ] testName, where name is the name of a test case class" << endl;
|
cout << "Usage: driver [-v] [-table] [ -wait ] testName, where name is the name of a test case class" << endl;
|
||||||
} // printBanner
|
} // printBanner
|
||||||
|
|
||||||
|
typedef bool (*runFn)(const string& name, Test *test, bool verbose);
|
||||||
|
|
||||||
bool TestRunner::run(int ac, const char **av)
|
bool TestRunner::run(int ac, const char **av)
|
||||||
{
|
{
|
||||||
bool ok = true;
|
bool ok = true;
|
||||||
string testCase;
|
string testCase;
|
||||||
int numberOfTests = 0;
|
int numberOfTests = 0;
|
||||||
int opt = 0;
|
int opt = 0;
|
||||||
|
runFn runner = textrun;
|
||||||
|
|
||||||
for(int i = 1; i < ac; i++)
|
for(int i = 1; i < ac; i++)
|
||||||
{
|
{
|
||||||
|
@ -61,6 +78,14 @@ bool TestRunner::run(int ac, const char **av)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(string(av[i]) == "-table")
|
||||||
|
{
|
||||||
|
runner = tablerun;
|
||||||
|
++opt;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
testCase = av[i];
|
testCase = av[i];
|
||||||
|
|
||||||
if(testCase == "")
|
if(testCase == "")
|
||||||
|
@ -78,7 +103,7 @@ bool TestRunner::run(int ac, const char **av)
|
||||||
if((*it).first == testCase)
|
if((*it).first == testCase)
|
||||||
{
|
{
|
||||||
testToRun = (*it).second;
|
testToRun = (*it).second;
|
||||||
ok &= ::run((*it).first, testToRun, verbose_);
|
ok &= runner((*it).first, testToRun, verbose_);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -96,7 +121,7 @@ bool TestRunner::run(int ac, const char **av)
|
||||||
// run everything
|
// run everything
|
||||||
for(mappings::iterator it = m_mappings.begin(); it != m_mappings.end(); ++it)
|
for(mappings::iterator it = m_mappings.begin(); it != m_mappings.end(); ++it)
|
||||||
{
|
{
|
||||||
ok &= ::run((*it).first, (*it).second, verbose_);
|
ok &= runner((*it).first, (*it).second, verbose_);
|
||||||
}
|
}
|
||||||
return ok;
|
return ok;
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
class TestRunner
|
class TestRunner
|
||||||
{
|
{
|
||||||
protected:
|
protected:
|
||||||
bool verbose_;
|
bool verbose_;
|
||||||
bool m_wait;
|
bool m_wait;
|
||||||
std::vector<std::pair<std::string,Test *> > m_mappings;
|
std::vector<std::pair<std::string,Test *> > m_mappings;
|
||||||
|
|
||||||
|
|
14
tests/CppUnit/textui/TableTestResult.cpp
Normal file
14
tests/CppUnit/textui/TableTestResult.cpp
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
|
||||||
|
|
||||||
|
#include "TableTestResult.hpp"
|
||||||
|
|
||||||
|
void TableTestResult::print(std::ostream& stream)
|
||||||
|
{
|
||||||
|
stream
|
||||||
|
<< "\n"
|
||||||
|
<< name() << "\t"
|
||||||
|
<< runTests() << "\t"
|
||||||
|
<< testFailures() << "\t"
|
||||||
|
<< testErrors() << "\t"
|
||||||
|
<< testSkips();
|
||||||
|
} // print
|
13
tests/CppUnit/textui/TableTestResult.hpp
Normal file
13
tests/CppUnit/textui/TableTestResult.hpp
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
#ifndef CPPUNIT_TableTestResult_HPP
|
||||||
|
#define CPPUNIT_TableTestResult_HPP
|
||||||
|
|
||||||
|
#include "TextTestResult.h"
|
||||||
|
|
||||||
|
class TableTestResult : public TextTestResult
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
TableTestResult(const std::string& name, bool verbose) : TextTestResult(name, verbose) { }
|
||||||
|
|
||||||
|
virtual void print(std::ostream& stream);
|
||||||
|
};
|
||||||
|
#endif
|
|
@ -125,7 +125,7 @@ void TextTestResult::print (ostream& stream)
|
||||||
if(verbose_)
|
if(verbose_)
|
||||||
printSkips (stream);
|
printSkips (stream);
|
||||||
if(verbose_ || !wasSuccessful())
|
if(verbose_ || !wasSuccessful())
|
||||||
cout << endl;
|
stream << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -135,15 +135,15 @@ void TextTestResult::printHeader (ostream& stream)
|
||||||
{
|
{
|
||||||
if(verbose_)
|
if(verbose_)
|
||||||
{
|
{
|
||||||
cout << endl << name_;
|
stream << endl << name_;
|
||||||
if(testSkips())
|
if(testSkips())
|
||||||
cout << endl << "OK (" << runTests () << " tests, with " << testSkips() << " skips)" << endl;
|
stream << endl << "OK (" << runTests () << " tests, with " << testSkips() << " skips)" << endl;
|
||||||
else
|
else
|
||||||
cout << endl << "OK (" << runTests () << " tests)" << endl;
|
stream << endl << "OK (" << runTests () << " tests)" << endl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
cout << endl
|
stream << endl
|
||||||
<< name_ << endl
|
<< name_ << endl
|
||||||
<< "!!!FAILURES!!!" << endl
|
<< "!!!FAILURES!!!" << endl
|
||||||
<< "Test Results:" << endl
|
<< "Test Results:" << endl
|
||||||
|
|
|
@ -20,6 +20,9 @@ public:
|
||||||
virtual void printSkips (std::ostream& stream);
|
virtual void printSkips (std::ostream& stream);
|
||||||
virtual void printHeader (std::ostream& stream);
|
virtual void printHeader (std::ostream& stream);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
const std::string& name() const { return name_; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::string name_;
|
std::string name_;
|
||||||
bool verbose_;
|
bool verbose_;
|
||||||
|
|
|
@ -1,335 +1,343 @@
|
||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="7.10"
|
Version="7.10"
|
||||||
Name="test_DOM"
|
Name="test_DOM"
|
||||||
ProjectGUID="{74A66132-475A-4DA1-8EF7-9CB0EF71E3D8}"
|
ProjectGUID="{74A66132-475A-4DA1-8EF7-9CB0EF71E3D8}"
|
||||||
>
|
>
|
||||||
<Platforms>
|
<Platforms>
|
||||||
<Platform
|
<Platform
|
||||||
Name="Win32"
|
Name="Win32"
|
||||||
/>
|
/>
|
||||||
</Platforms>
|
</Platforms>
|
||||||
<ToolFiles>
|
<ToolFiles>
|
||||||
</ToolFiles>
|
</ToolFiles>
|
||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
OutputDirectory=".\..\bin"
|
OutputDirectory=".\..\bin"
|
||||||
IntermediateDirectory=".\Debug_test_DOM"
|
IntermediateDirectory=".\Debug_test_DOM"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"
|
Name="VCPreBuildEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"
|
Name="VCXMLDataGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
AdditionalOptions="/Zm200"
|
AdditionalOptions="/Zm200"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories="..\include"
|
AdditionalIncludeDirectories="..\include"
|
||||||
PreprocessorDefinitions="WIN32,_DEBUG,_CONSOLE"
|
PreprocessorDefinitions="WIN32,_DEBUG,_CONSOLE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
TreatWChar_tAsBuiltInType="true"
|
TreatWChar_tAsBuiltInType="true"
|
||||||
RuntimeTypeInfo="true"
|
RuntimeTypeInfo="true"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
PrecompiledHeaderFile=".\Debug_test_DOM/DOM_test.pch"
|
PrecompiledHeaderFile=".\Debug_test_DOM/DOM_test.pch"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
SuppressStartupBanner="true"
|
SuppressStartupBanner="true"
|
||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG"
|
PreprocessorDefinitions="_DEBUG"
|
||||||
Culture="2057"
|
Culture="2057"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalDependencies="..\lib\arabica-debug.lib"
|
AdditionalDependencies="..\lib\arabica-debug.lib"
|
||||||
OutputFile="$(OutDir)/DOM_test.exe"
|
OutputFile="$(OutDir)/DOM_test.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="true"
|
SuppressStartupBanner="true"
|
||||||
AdditionalLibraryDirectories=""
|
AdditionalLibraryDirectories=""
|
||||||
GenerateDebugInformation="true"
|
GenerateDebugInformation="true"
|
||||||
ProgramDatabaseFile="$(OutDir)/DOM_test.pdb"
|
ProgramDatabaseFile="$(OutDir)/DOM_test.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
RandomizedBaseAddress="1"
|
RandomizedBaseAddress="1"
|
||||||
DataExecutionPrevention="0"
|
DataExecutionPrevention="0"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManifestTool"
|
Name="VCManifestTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXDCMakeTool"
|
Name="VCXDCMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCBscMakeTool"
|
Name="VCBscMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCFxCopTool"
|
Name="VCFxCopTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAppVerifierTool"
|
Name="VCAppVerifierTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"
|
Name="VCPostBuildEventTool"
|
||||||
/>
|
/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
OutputDirectory=".\..\bin"
|
OutputDirectory=".\..\bin"
|
||||||
IntermediateDirectory=".\Release_test_DOM"
|
IntermediateDirectory=".\Release_test_DOM"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"
|
Name="VCPreBuildEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"
|
Name="VCXMLDataGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
InlineFunctionExpansion="1"
|
InlineFunctionExpansion="1"
|
||||||
AdditionalIncludeDirectories="..\include"
|
AdditionalIncludeDirectories="..\include"
|
||||||
PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
|
PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
|
||||||
StringPooling="true"
|
StringPooling="true"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
EnableFunctionLevelLinking="true"
|
EnableFunctionLevelLinking="true"
|
||||||
TreatWChar_tAsBuiltInType="true"
|
TreatWChar_tAsBuiltInType="true"
|
||||||
RuntimeTypeInfo="true"
|
RuntimeTypeInfo="true"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
PrecompiledHeaderFile=".\Release_test_DOM/DOM_test.pch"
|
PrecompiledHeaderFile=".\Release_test_DOM/DOM_test.pch"
|
||||||
AssemblerListingLocation=".\Release_test_DOM/"
|
AssemblerListingLocation=".\Release_test_DOM/"
|
||||||
ObjectFile=".\Release_test_DOM/"
|
ObjectFile=".\Release_test_DOM/"
|
||||||
ProgramDataBaseFileName=".\Release_test_DOM/"
|
ProgramDataBaseFileName=".\Release_test_DOM/"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
SuppressStartupBanner="true"
|
SuppressStartupBanner="true"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="NDEBUG"
|
PreprocessorDefinitions="NDEBUG"
|
||||||
Culture="2057"
|
Culture="2057"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalDependencies="..\lib\arabica.lib"
|
AdditionalDependencies="..\lib\arabica.lib"
|
||||||
OutputFile="$(OutDir)/DOM_test.exe"
|
OutputFile="$(OutDir)/DOM_test.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="true"
|
SuppressStartupBanner="true"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
RandomizedBaseAddress="1"
|
RandomizedBaseAddress="1"
|
||||||
DataExecutionPrevention="0"
|
DataExecutionPrevention="0"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManifestTool"
|
Name="VCManifestTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXDCMakeTool"
|
Name="VCXDCMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCBscMakeTool"
|
Name="VCBscMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCFxCopTool"
|
Name="VCFxCopTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAppVerifierTool"
|
Name="VCAppVerifierTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"
|
Name="VCPostBuildEventTool"
|
||||||
/>
|
/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
</Configurations>
|
</Configurations>
|
||||||
<References>
|
<References>
|
||||||
</References>
|
</References>
|
||||||
<Files>
|
<Files>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Source Files"
|
Name="Source Files"
|
||||||
Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||||
>
|
>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\..\tests\DOM\main.cpp"
|
RelativePath=".\..\tests\DOM\main.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Header Files"
|
Name="Header Files"
|
||||||
Filter="h;hpp;hxx;hm;inl"
|
Filter="h;hpp;hxx;hm;inl"
|
||||||
>
|
>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\..\tests\DOM\dom_test_suite.hpp"
|
RelativePath=".\..\tests\DOM\dom_test_suite.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\..\tests\DOM\test_Attribute.hpp"
|
RelativePath=".\..\tests\DOM\test_Attribute.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\..\tests\DOM\test_CDATA.hpp"
|
RelativePath=".\..\tests\DOM\test_CDATA.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\..\tests\DOM\test_CharacterData.hpp"
|
RelativePath=".\..\tests\DOM\test_CharacterData.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\..\tests\DOM\test_Document.hpp"
|
RelativePath=".\..\tests\DOM\test_Document.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\..\tests\DOM\test_DocumentFragment.hpp"
|
RelativePath=".\..\tests\DOM\test_DocumentFragment.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\..\tests\DOM\test_DocumentType.hpp"
|
RelativePath=".\..\tests\DOM\test_DocumentType.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\..\tests\DOM\test_DOMImplementation.hpp"
|
RelativePath=".\..\tests\DOM\test_DOMImplementation.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\..\tests\DOM\test_Element.hpp"
|
RelativePath=".\..\tests\DOM\test_Element.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\..\tests\DOM\test_ProcessingInstruction.hpp"
|
RelativePath=".\..\tests\DOM\test_ProcessingInstruction.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_SAX2DOM.hpp"
|
RelativePath="..\tests\Dom\test_SAX2DOM.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\..\tests\DOM\test_Siblings.hpp"
|
RelativePath=".\..\tests\DOM\test_Siblings.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\..\tests\DOM\test_Text.hpp"
|
RelativePath=".\..\tests\DOM\test_Text.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="CppUnit"
|
Name="CppUnit"
|
||||||
>
|
>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\CppUnitException.h"
|
RelativePath="..\tests\CppUnit\framework\CppUnitException.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\estring.h"
|
RelativePath="..\tests\CppUnit\framework\estring.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestCaller.h"
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestCase.cpp"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestCase.h"
|
RelativePath="..\tests\CppUnit\framework\TestCaller.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestFailure.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestCase.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestFailure.h"
|
RelativePath="..\tests\CppUnit\framework\TestCase.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestResult.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestFailure.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestResult.h"
|
RelativePath="..\tests\CppUnit\framework\TestFailure.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\TestRunner.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestResult.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\TestRunner.hpp"
|
RelativePath="..\tests\CppUnit\framework\TestResult.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestSuite.cpp"
|
RelativePath="..\tests\CppUnit\TestRunner.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestSuite.h"
|
RelativePath="..\tests\CppUnit\TestRunner.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\textui\TextTestResult.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestSuite.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\textui\TextTestResult.h"
|
RelativePath="..\tests\CppUnit\framework\TestSuite.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
<File
|
||||||
</Files>
|
RelativePath="..\tests\CppUnit\textui\TextTestResult.cpp"
|
||||||
<Globals>
|
>
|
||||||
</Globals>
|
</File>
|
||||||
</VisualStudioProject>
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TextTestResult.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
||||||
|
|
|
@ -1,343 +1,351 @@
|
||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="7.10"
|
Version="7.10"
|
||||||
Name="test_DOM_silly"
|
Name="test_DOM_silly"
|
||||||
ProjectGUID="{7D957E35-93D3-4C9E-A5EF-4B0620CE758C}"
|
ProjectGUID="{7D957E35-93D3-4C9E-A5EF-4B0620CE758C}"
|
||||||
>
|
>
|
||||||
<Platforms>
|
<Platforms>
|
||||||
<Platform
|
<Platform
|
||||||
Name="Win32"
|
Name="Win32"
|
||||||
/>
|
/>
|
||||||
</Platforms>
|
</Platforms>
|
||||||
<ToolFiles>
|
<ToolFiles>
|
||||||
</ToolFiles>
|
</ToolFiles>
|
||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
OutputDirectory=".\..\bin"
|
OutputDirectory=".\..\bin"
|
||||||
IntermediateDirectory=".\Debug_test_DOM_silly"
|
IntermediateDirectory=".\Debug_test_DOM_silly"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"
|
Name="VCPreBuildEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"
|
Name="VCXMLDataGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
AdditionalOptions="/Zm200"
|
AdditionalOptions="/Zm200"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories="..\include"
|
AdditionalIncludeDirectories="..\include"
|
||||||
PreprocessorDefinitions="WIN32,_DEBUG,_CONSOLE"
|
PreprocessorDefinitions="WIN32,_DEBUG,_CONSOLE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
TreatWChar_tAsBuiltInType="true"
|
TreatWChar_tAsBuiltInType="true"
|
||||||
RuntimeTypeInfo="true"
|
RuntimeTypeInfo="true"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
PrecompiledHeaderFile=".\Debug_test_DOM/SAX2DOM_test.pch"
|
PrecompiledHeaderFile=".\Debug_test_DOM/SAX2DOM_test.pch"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
SuppressStartupBanner="true"
|
SuppressStartupBanner="true"
|
||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG"
|
PreprocessorDefinitions="_DEBUG"
|
||||||
Culture="2057"
|
Culture="2057"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalDependencies="..\lib\arabica-debug.lib"
|
AdditionalDependencies="..\lib\arabica-debug.lib"
|
||||||
OutputFile="$(OutDir)/DOM_test_silly.exe"
|
OutputFile="$(OutDir)/DOM_test_silly.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="true"
|
SuppressStartupBanner="true"
|
||||||
AdditionalLibraryDirectories=""
|
AdditionalLibraryDirectories=""
|
||||||
GenerateDebugInformation="true"
|
GenerateDebugInformation="true"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
RandomizedBaseAddress="1"
|
RandomizedBaseAddress="1"
|
||||||
DataExecutionPrevention="0"
|
DataExecutionPrevention="0"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManifestTool"
|
Name="VCManifestTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXDCMakeTool"
|
Name="VCXDCMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCBscMakeTool"
|
Name="VCBscMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCFxCopTool"
|
Name="VCFxCopTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAppVerifierTool"
|
Name="VCAppVerifierTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"
|
Name="VCPostBuildEventTool"
|
||||||
/>
|
/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
OutputDirectory=".\..\bin"
|
OutputDirectory=".\..\bin"
|
||||||
IntermediateDirectory=".\Release_test_DOM_silly"
|
IntermediateDirectory=".\Release_test_DOM_silly"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"
|
Name="VCPreBuildEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"
|
Name="VCXMLDataGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
InlineFunctionExpansion="1"
|
InlineFunctionExpansion="1"
|
||||||
AdditionalIncludeDirectories="..\include"
|
AdditionalIncludeDirectories="..\include"
|
||||||
PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
|
PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
|
||||||
StringPooling="true"
|
StringPooling="true"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
EnableFunctionLevelLinking="true"
|
EnableFunctionLevelLinking="true"
|
||||||
TreatWChar_tAsBuiltInType="true"
|
TreatWChar_tAsBuiltInType="true"
|
||||||
RuntimeTypeInfo="true"
|
RuntimeTypeInfo="true"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
PrecompiledHeaderFile=".\Release_test_DOM/DOM_test.pch"
|
PrecompiledHeaderFile=".\Release_test_DOM/DOM_test.pch"
|
||||||
AssemblerListingLocation=".\Release_test_DOM/"
|
AssemblerListingLocation=".\Release_test_DOM/"
|
||||||
ObjectFile=".\Release_test_DOM/"
|
ObjectFile=".\Release_test_DOM/"
|
||||||
ProgramDataBaseFileName=".\Release_test_DOM/"
|
ProgramDataBaseFileName=".\Release_test_DOM/"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
SuppressStartupBanner="true"
|
SuppressStartupBanner="true"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="NDEBUG"
|
PreprocessorDefinitions="NDEBUG"
|
||||||
Culture="2057"
|
Culture="2057"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalDependencies="..\lib\arabica.lib"
|
AdditionalDependencies="..\lib\arabica.lib"
|
||||||
OutputFile="$(OutDir)/DOM_test_silly.exe"
|
OutputFile="$(OutDir)/DOM_test_silly.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="true"
|
SuppressStartupBanner="true"
|
||||||
ProgramDatabaseFile=".\Release_test_DOM/DOM_test_silly.pdb"
|
ProgramDatabaseFile=".\Release_test_DOM/DOM_test_silly.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
RandomizedBaseAddress="1"
|
RandomizedBaseAddress="1"
|
||||||
DataExecutionPrevention="0"
|
DataExecutionPrevention="0"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManifestTool"
|
Name="VCManifestTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXDCMakeTool"
|
Name="VCXDCMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCBscMakeTool"
|
Name="VCBscMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCFxCopTool"
|
Name="VCFxCopTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAppVerifierTool"
|
Name="VCAppVerifierTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"
|
Name="VCPostBuildEventTool"
|
||||||
/>
|
/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
</Configurations>
|
</Configurations>
|
||||||
<References>
|
<References>
|
||||||
</References>
|
</References>
|
||||||
<Files>
|
<Files>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Source Files"
|
Name="Source Files"
|
||||||
Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||||
>
|
>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\DOM\main_silly.cpp"
|
RelativePath="..\tests\DOM\main_silly.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\silly_string\silly_string.cpp"
|
RelativePath="..\tests\silly_string\silly_string.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Header Files"
|
Name="Header Files"
|
||||||
Filter="h;hpp;hxx;hm;inl"
|
Filter="h;hpp;hxx;hm;inl"
|
||||||
>
|
>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\dom_test_suite.hpp"
|
RelativePath="..\tests\Dom\dom_test_suite.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\silly_string\silly_string.hpp"
|
RelativePath="..\tests\silly_string\silly_string.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_Attribute.hpp"
|
RelativePath="..\tests\Dom\test_Attribute.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_CDATA.hpp"
|
RelativePath="..\tests\Dom\test_CDATA.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_CharacterData.hpp"
|
RelativePath="..\tests\Dom\test_CharacterData.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_Document.hpp"
|
RelativePath="..\tests\Dom\test_Document.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_DocumentFragment.hpp"
|
RelativePath="..\tests\Dom\test_DocumentFragment.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_DocumentType.hpp"
|
RelativePath="..\tests\Dom\test_DocumentType.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_DOMImplementation.hpp"
|
RelativePath="..\tests\Dom\test_DOMImplementation.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_Element.hpp"
|
RelativePath="..\tests\Dom\test_Element.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_ProcessingInstruction.hpp"
|
RelativePath="..\tests\Dom\test_ProcessingInstruction.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_SAX2DOM.hpp"
|
RelativePath="..\tests\Dom\test_SAX2DOM.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_Siblings.hpp"
|
RelativePath="..\tests\Dom\test_Siblings.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_Text.hpp"
|
RelativePath="..\tests\Dom\test_Text.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="CppUnit"
|
Name="CppUnit"
|
||||||
>
|
>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\CppUnitException.h"
|
RelativePath="..\tests\CppUnit\framework\CppUnitException.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\estring.h"
|
RelativePath="..\tests\CppUnit\framework\estring.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestCaller.h"
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestCase.cpp"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestCase.h"
|
RelativePath="..\tests\CppUnit\framework\TestCaller.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestFailure.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestCase.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestFailure.h"
|
RelativePath="..\tests\CppUnit\framework\TestCase.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestResult.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestFailure.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestResult.h"
|
RelativePath="..\tests\CppUnit\framework\TestFailure.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\TestRunner.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestResult.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\TestRunner.hpp"
|
RelativePath="..\tests\CppUnit\framework\TestResult.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestSuite.cpp"
|
RelativePath="..\tests\CppUnit\TestRunner.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestSuite.h"
|
RelativePath="..\tests\CppUnit\TestRunner.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\textui\TextTestResult.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestSuite.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\textui\TextTestResult.h"
|
RelativePath="..\tests\CppUnit\framework\TestSuite.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
<File
|
||||||
</Files>
|
RelativePath="..\tests\CppUnit\textui\TextTestResult.cpp"
|
||||||
<Globals>
|
>
|
||||||
</Globals>
|
</File>
|
||||||
</VisualStudioProject>
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TextTestResult.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
||||||
|
|
|
@ -1,335 +1,343 @@
|
||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="7.10"
|
Version="7.10"
|
||||||
Name="test_DOM_wide"
|
Name="test_DOM_wide"
|
||||||
ProjectGUID="{DE6FD811-12BD-4914-BA29-CD987C4B0D48}"
|
ProjectGUID="{DE6FD811-12BD-4914-BA29-CD987C4B0D48}"
|
||||||
>
|
>
|
||||||
<Platforms>
|
<Platforms>
|
||||||
<Platform
|
<Platform
|
||||||
Name="Win32"
|
Name="Win32"
|
||||||
/>
|
/>
|
||||||
</Platforms>
|
</Platforms>
|
||||||
<ToolFiles>
|
<ToolFiles>
|
||||||
</ToolFiles>
|
</ToolFiles>
|
||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
OutputDirectory=".\..\bin"
|
OutputDirectory=".\..\bin"
|
||||||
IntermediateDirectory=".\Debug_test_DOM"
|
IntermediateDirectory=".\Debug_test_DOM"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"
|
Name="VCPreBuildEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"
|
Name="VCXMLDataGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
AdditionalOptions="/Zm200"
|
AdditionalOptions="/Zm200"
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
AdditionalIncludeDirectories="..\include"
|
AdditionalIncludeDirectories="..\include"
|
||||||
PreprocessorDefinitions="WIN32,_DEBUG,_CONSOLE"
|
PreprocessorDefinitions="WIN32,_DEBUG,_CONSOLE"
|
||||||
BasicRuntimeChecks="3"
|
BasicRuntimeChecks="3"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
TreatWChar_tAsBuiltInType="true"
|
TreatWChar_tAsBuiltInType="true"
|
||||||
RuntimeTypeInfo="true"
|
RuntimeTypeInfo="true"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
PrecompiledHeaderFile=".\Debug_test_DOM/SAX2DOM_test.pch"
|
PrecompiledHeaderFile=".\Debug_test_DOM/SAX2DOM_test.pch"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
SuppressStartupBanner="true"
|
SuppressStartupBanner="true"
|
||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
CompileAs="0"
|
CompileAs="0"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="_DEBUG"
|
PreprocessorDefinitions="_DEBUG"
|
||||||
Culture="2057"
|
Culture="2057"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalDependencies="..\lib\arabica-debug.lib"
|
AdditionalDependencies="..\lib\arabica-debug.lib"
|
||||||
OutputFile="$(OutDir)/DOM_test_wide.exe"
|
OutputFile="$(OutDir)/DOM_test_wide.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
SuppressStartupBanner="true"
|
SuppressStartupBanner="true"
|
||||||
AdditionalLibraryDirectories=""
|
AdditionalLibraryDirectories=""
|
||||||
GenerateDebugInformation="true"
|
GenerateDebugInformation="true"
|
||||||
ProgramDatabaseFile="$(OutDir)/DOM_test_wide.pdb"
|
ProgramDatabaseFile="$(OutDir)/DOM_test_wide.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
RandomizedBaseAddress="1"
|
RandomizedBaseAddress="1"
|
||||||
DataExecutionPrevention="0"
|
DataExecutionPrevention="0"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManifestTool"
|
Name="VCManifestTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXDCMakeTool"
|
Name="VCXDCMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCBscMakeTool"
|
Name="VCBscMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCFxCopTool"
|
Name="VCFxCopTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAppVerifierTool"
|
Name="VCAppVerifierTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"
|
Name="VCPostBuildEventTool"
|
||||||
/>
|
/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
OutputDirectory=".\..\bin"
|
OutputDirectory=".\..\bin"
|
||||||
IntermediateDirectory=".\Release_test_DOM_wide"
|
IntermediateDirectory=".\Release_test_DOM_wide"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
||||||
UseOfMFC="0"
|
UseOfMFC="0"
|
||||||
ATLMinimizesCRunTimeLibraryUsage="false"
|
ATLMinimizesCRunTimeLibraryUsage="false"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"
|
Name="VCPreBuildEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"
|
Name="VCXMLDataGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
InlineFunctionExpansion="1"
|
InlineFunctionExpansion="1"
|
||||||
AdditionalIncludeDirectories="..\include"
|
AdditionalIncludeDirectories="..\include"
|
||||||
PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
|
PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
|
||||||
StringPooling="true"
|
StringPooling="true"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
EnableFunctionLevelLinking="true"
|
EnableFunctionLevelLinking="true"
|
||||||
TreatWChar_tAsBuiltInType="true"
|
TreatWChar_tAsBuiltInType="true"
|
||||||
RuntimeTypeInfo="true"
|
RuntimeTypeInfo="true"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
PrecompiledHeaderFile=".\Release_test_DOM/DOM_test.pch"
|
PrecompiledHeaderFile=".\Release_test_DOM/DOM_test.pch"
|
||||||
AssemblerListingLocation=".\Release_test_DOM/"
|
AssemblerListingLocation=".\Release_test_DOM/"
|
||||||
ObjectFile=".\Release_test_DOM/"
|
ObjectFile=".\Release_test_DOM/"
|
||||||
ProgramDataBaseFileName=".\Release_test_DOM/"
|
ProgramDataBaseFileName=".\Release_test_DOM/"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
SuppressStartupBanner="true"
|
SuppressStartupBanner="true"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
PreprocessorDefinitions="NDEBUG"
|
PreprocessorDefinitions="NDEBUG"
|
||||||
Culture="2057"
|
Culture="2057"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalDependencies="..\lib\arabica.lib"
|
AdditionalDependencies="..\lib\arabica.lib"
|
||||||
OutputFile="$(OutDir)/DOM_test_wide.exe"
|
OutputFile="$(OutDir)/DOM_test_wide.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
SuppressStartupBanner="true"
|
SuppressStartupBanner="true"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
RandomizedBaseAddress="1"
|
RandomizedBaseAddress="1"
|
||||||
DataExecutionPrevention="0"
|
DataExecutionPrevention="0"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManifestTool"
|
Name="VCManifestTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXDCMakeTool"
|
Name="VCXDCMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCBscMakeTool"
|
Name="VCBscMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCFxCopTool"
|
Name="VCFxCopTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAppVerifierTool"
|
Name="VCAppVerifierTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"
|
Name="VCPostBuildEventTool"
|
||||||
/>
|
/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
</Configurations>
|
</Configurations>
|
||||||
<References>
|
<References>
|
||||||
</References>
|
</References>
|
||||||
<Files>
|
<Files>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Source Files"
|
Name="Source Files"
|
||||||
Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||||
>
|
>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\DOM\main_wide.cpp"
|
RelativePath="..\tests\DOM\main_wide.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Header Files"
|
Name="Header Files"
|
||||||
Filter="h;hpp;hxx;hm;inl"
|
Filter="h;hpp;hxx;hm;inl"
|
||||||
>
|
>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\DOM\dom_test_suite.hpp"
|
RelativePath="..\tests\DOM\dom_test_suite.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_Attribute.hpp"
|
RelativePath="..\tests\Dom\test_Attribute.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_CDATA.hpp"
|
RelativePath="..\tests\Dom\test_CDATA.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_CharacterData.hpp"
|
RelativePath="..\tests\Dom\test_CharacterData.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_Document.hpp"
|
RelativePath="..\tests\Dom\test_Document.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_DocumentFragment.hpp"
|
RelativePath="..\tests\Dom\test_DocumentFragment.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_DocumentType.hpp"
|
RelativePath="..\tests\Dom\test_DocumentType.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_DOMImplementation.hpp"
|
RelativePath="..\tests\Dom\test_DOMImplementation.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_Element.hpp"
|
RelativePath="..\tests\Dom\test_Element.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_ProcessingInstruction.hpp"
|
RelativePath="..\tests\Dom\test_ProcessingInstruction.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_SAX2DOM.hpp"
|
RelativePath="..\tests\Dom\test_SAX2DOM.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_Siblings.hpp"
|
RelativePath="..\tests\Dom\test_Siblings.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\Dom\test_Text.hpp"
|
RelativePath="..\tests\Dom\test_Text.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="CppUnit"
|
Name="CppUnit"
|
||||||
>
|
>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\CppUnitException.h"
|
RelativePath="..\tests\CppUnit\framework\CppUnitException.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\estring.h"
|
RelativePath="..\tests\CppUnit\framework\estring.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestCaller.h"
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestCase.cpp"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestCase.h"
|
RelativePath="..\tests\CppUnit\framework\TestCaller.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestFailure.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestCase.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestFailure.h"
|
RelativePath="..\tests\CppUnit\framework\TestCase.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestResult.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestFailure.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestResult.h"
|
RelativePath="..\tests\CppUnit\framework\TestFailure.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\TestRunner.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestResult.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\TestRunner.hpp"
|
RelativePath="..\tests\CppUnit\framework\TestResult.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestSuite.cpp"
|
RelativePath="..\tests\CppUnit\TestRunner.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestSuite.h"
|
RelativePath="..\tests\CppUnit\TestRunner.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\textui\TextTestResult.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestSuite.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\textui\TextTestResult.h"
|
RelativePath="..\tests\CppUnit\framework\TestSuite.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
<File
|
||||||
</Files>
|
RelativePath="..\tests\CppUnit\textui\TextTestResult.cpp"
|
||||||
<Globals>
|
>
|
||||||
</Globals>
|
</File>
|
||||||
</VisualStudioProject>
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TextTestResult.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
||||||
|
|
|
@ -216,6 +216,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -214,6 +214,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -214,6 +214,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -236,6 +236,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -1,331 +1,339 @@
|
||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="7.10"
|
Version="7.10"
|
||||||
Name="test_xpath"
|
Name="test_xpath"
|
||||||
ProjectGUID="{B3C75B3A-BB0A-4B23-87F9-FB9CD98FF8CE}"
|
ProjectGUID="{B3C75B3A-BB0A-4B23-87F9-FB9CD98FF8CE}"
|
||||||
Keyword="Win32Proj"
|
Keyword="Win32Proj"
|
||||||
>
|
>
|
||||||
<Platforms>
|
<Platforms>
|
||||||
<Platform
|
<Platform
|
||||||
Name="Win32"
|
Name="Win32"
|
||||||
/>
|
/>
|
||||||
</Platforms>
|
</Platforms>
|
||||||
<ToolFiles>
|
<ToolFiles>
|
||||||
</ToolFiles>
|
</ToolFiles>
|
||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
OutputDirectory=".\..\bin"
|
OutputDirectory=".\..\bin"
|
||||||
IntermediateDirectory=".\Debug_test_xpath"
|
IntermediateDirectory=".\Debug_test_xpath"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"
|
Name="VCPreBuildEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"
|
Name="VCXMLDataGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
AdditionalOptions="/Zm1000 "
|
AdditionalOptions="/Zm1000 "
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
InlineFunctionExpansion="0"
|
InlineFunctionExpansion="0"
|
||||||
AdditionalIncludeDirectories="..\include"
|
AdditionalIncludeDirectories="..\include"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||||
MinimalRebuild="false"
|
MinimalRebuild="false"
|
||||||
BasicRuntimeChecks="0"
|
BasicRuntimeChecks="0"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
DisableLanguageExtensions="false"
|
DisableLanguageExtensions="false"
|
||||||
TreatWChar_tAsBuiltInType="true"
|
TreatWChar_tAsBuiltInType="true"
|
||||||
ForceConformanceInForLoopScope="true"
|
ForceConformanceInForLoopScope="true"
|
||||||
RuntimeTypeInfo="true"
|
RuntimeTypeInfo="true"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
Detect64BitPortabilityProblems="false"
|
Detect64BitPortabilityProblems="false"
|
||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalDependencies="..\lib\arabica-debug.lib"
|
AdditionalDependencies="..\lib\arabica-debug.lib"
|
||||||
OutputFile="$(OutDir)/xpath_test.exe"
|
OutputFile="$(OutDir)/xpath_test.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
GenerateDebugInformation="true"
|
GenerateDebugInformation="true"
|
||||||
ProgramDatabaseFile="$(OutDir)/xpath_test.pdb"
|
ProgramDatabaseFile="$(OutDir)/xpath_test.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
RandomizedBaseAddress="1"
|
RandomizedBaseAddress="1"
|
||||||
DataExecutionPrevention="0"
|
DataExecutionPrevention="0"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManifestTool"
|
Name="VCManifestTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXDCMakeTool"
|
Name="VCXDCMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCBscMakeTool"
|
Name="VCBscMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCFxCopTool"
|
Name="VCFxCopTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAppVerifierTool"
|
Name="VCAppVerifierTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"
|
Name="VCPostBuildEventTool"
|
||||||
/>
|
/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
OutputDirectory=".\..\bin"
|
OutputDirectory=".\..\bin"
|
||||||
IntermediateDirectory=".\Release_test_xpath"
|
IntermediateDirectory=".\Release_test_xpath"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"
|
Name="VCPreBuildEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"
|
Name="VCXMLDataGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
AdditionalOptions="/Zm1000 "
|
AdditionalOptions="/Zm1000 "
|
||||||
AdditionalIncludeDirectories="..\include"
|
AdditionalIncludeDirectories="..\include"
|
||||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
DisableLanguageExtensions="false"
|
DisableLanguageExtensions="false"
|
||||||
TreatWChar_tAsBuiltInType="true"
|
TreatWChar_tAsBuiltInType="true"
|
||||||
ForceConformanceInForLoopScope="true"
|
ForceConformanceInForLoopScope="true"
|
||||||
RuntimeTypeInfo="true"
|
RuntimeTypeInfo="true"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
Detect64BitPortabilityProblems="true"
|
Detect64BitPortabilityProblems="true"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalDependencies="..\lib\arabica.lib"
|
AdditionalDependencies="..\lib\arabica.lib"
|
||||||
OutputFile="$(OutDir)/xpath_test.exe"
|
OutputFile="$(OutDir)/xpath_test.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
GenerateDebugInformation="true"
|
GenerateDebugInformation="true"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"
|
EnableCOMDATFolding="2"
|
||||||
RandomizedBaseAddress="1"
|
RandomizedBaseAddress="1"
|
||||||
DataExecutionPrevention="0"
|
DataExecutionPrevention="0"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManifestTool"
|
Name="VCManifestTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXDCMakeTool"
|
Name="VCXDCMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCBscMakeTool"
|
Name="VCBscMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCFxCopTool"
|
Name="VCFxCopTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAppVerifierTool"
|
Name="VCAppVerifierTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"
|
Name="VCPostBuildEventTool"
|
||||||
/>
|
/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
</Configurations>
|
</Configurations>
|
||||||
<References>
|
<References>
|
||||||
</References>
|
</References>
|
||||||
<Files>
|
<Files>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Source Files"
|
Name="Source Files"
|
||||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
>
|
>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\main.cpp"
|
RelativePath="..\tests\XPath\main.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Header Files"
|
Name="Header Files"
|
||||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||||
>
|
>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\arithmetic_test.hpp"
|
RelativePath="..\tests\XPath\arithmetic_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\attr_value_test.hpp"
|
RelativePath="..\tests\XPath\attr_value_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\axis_enumerator_test.hpp"
|
RelativePath="..\tests\XPath\axis_enumerator_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\execute_test.hpp"
|
RelativePath="..\tests\XPath\execute_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\expression_test.hpp"
|
RelativePath="..\tests\XPath\expression_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\logical_test.hpp"
|
RelativePath="..\tests\XPath\logical_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\match_test.hpp"
|
RelativePath="..\tests\XPath\match_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\node_test_test.hpp"
|
RelativePath="..\tests\XPath\node_test_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\parse_test.hpp"
|
RelativePath="..\tests\XPath\parse_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\relational_test.hpp"
|
RelativePath="..\tests\XPath\relational_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\step_test.hpp"
|
RelativePath="..\tests\XPath\step_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\value_test.hpp"
|
RelativePath="..\tests\XPath\value_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\xpath_test_suite.hpp"
|
RelativePath="..\tests\XPath\xpath_test_suite.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="CppUnit"
|
Name="CppUnit"
|
||||||
>
|
>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\CppUnitException.h"
|
RelativePath="..\tests\CppUnit\framework\CppUnitException.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\estring.h"
|
RelativePath="..\tests\CppUnit\framework\estring.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestCaller.h"
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestCase.cpp"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestCase.h"
|
RelativePath="..\tests\CppUnit\framework\TestCaller.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestFailure.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestCase.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestFailure.h"
|
RelativePath="..\tests\CppUnit\framework\TestCase.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestResult.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestFailure.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestResult.h"
|
RelativePath="..\tests\CppUnit\framework\TestFailure.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\TestRunner.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestResult.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\TestRunner.hpp"
|
RelativePath="..\tests\CppUnit\framework\TestResult.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestSuite.cpp"
|
RelativePath="..\tests\CppUnit\TestRunner.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestSuite.h"
|
RelativePath="..\tests\CppUnit\TestRunner.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\textui\TextTestResult.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestSuite.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\textui\TextTestResult.h"
|
RelativePath="..\tests\CppUnit\framework\TestSuite.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
<File
|
||||||
</Files>
|
RelativePath="..\tests\CppUnit\textui\TextTestResult.cpp"
|
||||||
<Globals>
|
>
|
||||||
</Globals>
|
</File>
|
||||||
</VisualStudioProject>
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TextTestResult.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
||||||
|
|
|
@ -1,337 +1,345 @@
|
||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="7.10"
|
Version="7.10"
|
||||||
Name="test_xpath_silly"
|
Name="test_xpath_silly"
|
||||||
ProjectGUID="{92BC362C-4B23-4444-A9A8-81933D01D283}"
|
ProjectGUID="{92BC362C-4B23-4444-A9A8-81933D01D283}"
|
||||||
Keyword="Win32Proj"
|
Keyword="Win32Proj"
|
||||||
>
|
>
|
||||||
<Platforms>
|
<Platforms>
|
||||||
<Platform
|
<Platform
|
||||||
Name="Win32"
|
Name="Win32"
|
||||||
/>
|
/>
|
||||||
</Platforms>
|
</Platforms>
|
||||||
<ToolFiles>
|
<ToolFiles>
|
||||||
</ToolFiles>
|
</ToolFiles>
|
||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
OutputDirectory=".\..\bin"
|
OutputDirectory=".\..\bin"
|
||||||
IntermediateDirectory=".\Debug_test_xpath_silly"
|
IntermediateDirectory=".\Debug_test_xpath_silly"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"
|
Name="VCPreBuildEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"
|
Name="VCXMLDataGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
AdditionalOptions="/Zm1000 "
|
AdditionalOptions="/Zm1000 "
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
InlineFunctionExpansion="0"
|
InlineFunctionExpansion="0"
|
||||||
AdditionalIncludeDirectories="..\include"
|
AdditionalIncludeDirectories="..\include"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||||
MinimalRebuild="false"
|
MinimalRebuild="false"
|
||||||
BasicRuntimeChecks="0"
|
BasicRuntimeChecks="0"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
DisableLanguageExtensions="false"
|
DisableLanguageExtensions="false"
|
||||||
TreatWChar_tAsBuiltInType="true"
|
TreatWChar_tAsBuiltInType="true"
|
||||||
ForceConformanceInForLoopScope="false"
|
ForceConformanceInForLoopScope="false"
|
||||||
RuntimeTypeInfo="true"
|
RuntimeTypeInfo="true"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
Detect64BitPortabilityProblems="false"
|
Detect64BitPortabilityProblems="false"
|
||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalDependencies="..\lib\arabica-debug.lib"
|
AdditionalDependencies="..\lib\arabica-debug.lib"
|
||||||
OutputFile="$(OutDir)/xpath_test_ss.exe"
|
OutputFile="$(OutDir)/xpath_test_ss.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
GenerateDebugInformation="true"
|
GenerateDebugInformation="true"
|
||||||
ProgramDatabaseFile="$(OutDir)/xpath_test_ss.pdb"
|
ProgramDatabaseFile="$(OutDir)/xpath_test_ss.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
RandomizedBaseAddress="1"
|
RandomizedBaseAddress="1"
|
||||||
DataExecutionPrevention="0"
|
DataExecutionPrevention="0"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManifestTool"
|
Name="VCManifestTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXDCMakeTool"
|
Name="VCXDCMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCBscMakeTool"
|
Name="VCBscMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCFxCopTool"
|
Name="VCFxCopTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAppVerifierTool"
|
Name="VCAppVerifierTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"
|
Name="VCPostBuildEventTool"
|
||||||
/>
|
/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
OutputDirectory=".\..\bin"
|
OutputDirectory=".\..\bin"
|
||||||
IntermediateDirectory=".\Release_test_xpath_silly"
|
IntermediateDirectory=".\Release_test_xpath_silly"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"
|
Name="VCPreBuildEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"
|
Name="VCXMLDataGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
AdditionalOptions="/Zm1000 "
|
AdditionalOptions="/Zm1000 "
|
||||||
AdditionalIncludeDirectories="..\include"
|
AdditionalIncludeDirectories="..\include"
|
||||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
DisableLanguageExtensions="false"
|
DisableLanguageExtensions="false"
|
||||||
TreatWChar_tAsBuiltInType="true"
|
TreatWChar_tAsBuiltInType="true"
|
||||||
ForceConformanceInForLoopScope="true"
|
ForceConformanceInForLoopScope="true"
|
||||||
RuntimeTypeInfo="true"
|
RuntimeTypeInfo="true"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
Detect64BitPortabilityProblems="true"
|
Detect64BitPortabilityProblems="true"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalDependencies="..\lib\arabica.lib"
|
AdditionalDependencies="..\lib\arabica.lib"
|
||||||
OutputFile="$(OutDir)/xpath_test_ss.exe"
|
OutputFile="$(OutDir)/xpath_test_ss.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
GenerateDebugInformation="true"
|
GenerateDebugInformation="true"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"
|
EnableCOMDATFolding="2"
|
||||||
RandomizedBaseAddress="1"
|
RandomizedBaseAddress="1"
|
||||||
DataExecutionPrevention="0"
|
DataExecutionPrevention="0"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManifestTool"
|
Name="VCManifestTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXDCMakeTool"
|
Name="VCXDCMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCBscMakeTool"
|
Name="VCBscMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCFxCopTool"
|
Name="VCFxCopTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAppVerifierTool"
|
Name="VCAppVerifierTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"
|
Name="VCPostBuildEventTool"
|
||||||
/>
|
/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
</Configurations>
|
</Configurations>
|
||||||
<References>
|
<References>
|
||||||
</References>
|
</References>
|
||||||
<Files>
|
<Files>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Source Files"
|
Name="Source Files"
|
||||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
>
|
>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\main_silly.cpp"
|
RelativePath="..\tests\XPath\main_silly.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\silly_string\silly_string.cpp"
|
RelativePath="..\tests\silly_string\silly_string.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Header Files"
|
Name="Header Files"
|
||||||
>
|
>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\arithmetic_test.hpp"
|
RelativePath="..\tests\XPath\arithmetic_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\attr_value_test.hpp"
|
RelativePath="..\tests\XPath\attr_value_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\axis_enumerator_test.hpp"
|
RelativePath="..\tests\XPath\axis_enumerator_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\execute_test.hpp"
|
RelativePath="..\tests\XPath\execute_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\expression_test.hpp"
|
RelativePath="..\tests\XPath\expression_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\logical_test.hpp"
|
RelativePath="..\tests\XPath\logical_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\match_test.hpp"
|
RelativePath="..\tests\XPath\match_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\node_test_test.hpp"
|
RelativePath="..\tests\XPath\node_test_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\parse_test.hpp"
|
RelativePath="..\tests\XPath\parse_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\relational_test.hpp"
|
RelativePath="..\tests\XPath\relational_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\silly_string\silly_string.hpp"
|
RelativePath="..\tests\silly_string\silly_string.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\step_test.hpp"
|
RelativePath="..\tests\XPath\step_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\value_test.hpp"
|
RelativePath="..\tests\XPath\value_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\xpath_test_suite.hpp"
|
RelativePath="..\tests\XPath\xpath_test_suite.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="CppUnit"
|
Name="CppUnit"
|
||||||
>
|
>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\CppUnitException.h"
|
RelativePath="..\tests\CppUnit\framework\CppUnitException.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\estring.h"
|
RelativePath="..\tests\CppUnit\framework\estring.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestCaller.h"
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestCase.cpp"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestCase.h"
|
RelativePath="..\tests\CppUnit\framework\TestCaller.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestFailure.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestCase.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestFailure.h"
|
RelativePath="..\tests\CppUnit\framework\TestCase.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestResult.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestFailure.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestResult.h"
|
RelativePath="..\tests\CppUnit\framework\TestFailure.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\TestRunner.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestResult.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\TestRunner.hpp"
|
RelativePath="..\tests\CppUnit\framework\TestResult.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestSuite.cpp"
|
RelativePath="..\tests\CppUnit\TestRunner.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestSuite.h"
|
RelativePath="..\tests\CppUnit\TestRunner.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\textui\TextTestResult.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestSuite.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\textui\TextTestResult.h"
|
RelativePath="..\tests\CppUnit\framework\TestSuite.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
<File
|
||||||
</Files>
|
RelativePath="..\tests\CppUnit\textui\TextTestResult.cpp"
|
||||||
<Globals>
|
>
|
||||||
</Globals>
|
</File>
|
||||||
</VisualStudioProject>
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TextTestResult.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
||||||
|
|
|
@ -1,329 +1,337 @@
|
||||||
<?xml version="1.0" encoding="Windows-1252"?>
|
<?xml version="1.0" encoding="Windows-1252"?>
|
||||||
<VisualStudioProject
|
<VisualStudioProject
|
||||||
ProjectType="Visual C++"
|
ProjectType="Visual C++"
|
||||||
Version="7.10"
|
Version="7.10"
|
||||||
Name="test_xpath_wide"
|
Name="test_xpath_wide"
|
||||||
ProjectGUID="{EA2AB1BF-D09C-4DCB-87C9-A6DB41BCC1FA}"
|
ProjectGUID="{EA2AB1BF-D09C-4DCB-87C9-A6DB41BCC1FA}"
|
||||||
Keyword="Win32Proj"
|
Keyword="Win32Proj"
|
||||||
>
|
>
|
||||||
<Platforms>
|
<Platforms>
|
||||||
<Platform
|
<Platform
|
||||||
Name="Win32"
|
Name="Win32"
|
||||||
/>
|
/>
|
||||||
</Platforms>
|
</Platforms>
|
||||||
<ToolFiles>
|
<ToolFiles>
|
||||||
</ToolFiles>
|
</ToolFiles>
|
||||||
<Configurations>
|
<Configurations>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Debug|Win32"
|
Name="Debug|Win32"
|
||||||
OutputDirectory=".\..\bin"
|
OutputDirectory=".\..\bin"
|
||||||
IntermediateDirectory=".\Debug_test_xpath_wide"
|
IntermediateDirectory=".\Debug_test_xpath_wide"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"
|
Name="VCPreBuildEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"
|
Name="VCXMLDataGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
AdditionalOptions="/Zm1000 "
|
AdditionalOptions="/Zm1000 "
|
||||||
Optimization="0"
|
Optimization="0"
|
||||||
InlineFunctionExpansion="0"
|
InlineFunctionExpansion="0"
|
||||||
AdditionalIncludeDirectories="..\include"
|
AdditionalIncludeDirectories="..\include"
|
||||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
|
||||||
MinimalRebuild="false"
|
MinimalRebuild="false"
|
||||||
BasicRuntimeChecks="0"
|
BasicRuntimeChecks="0"
|
||||||
RuntimeLibrary="3"
|
RuntimeLibrary="3"
|
||||||
DisableLanguageExtensions="false"
|
DisableLanguageExtensions="false"
|
||||||
TreatWChar_tAsBuiltInType="true"
|
TreatWChar_tAsBuiltInType="true"
|
||||||
ForceConformanceInForLoopScope="false"
|
ForceConformanceInForLoopScope="false"
|
||||||
RuntimeTypeInfo="true"
|
RuntimeTypeInfo="true"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
Detect64BitPortabilityProblems="false"
|
Detect64BitPortabilityProblems="false"
|
||||||
DebugInformationFormat="4"
|
DebugInformationFormat="4"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalDependencies="..\lib\arabica-debug.lib"
|
AdditionalDependencies="..\lib\arabica-debug.lib"
|
||||||
OutputFile="$(OutDir)/xpath_test_wide.exe"
|
OutputFile="$(OutDir)/xpath_test_wide.exe"
|
||||||
LinkIncremental="2"
|
LinkIncremental="2"
|
||||||
GenerateDebugInformation="true"
|
GenerateDebugInformation="true"
|
||||||
ProgramDatabaseFile="$(OutDir)/xpath_test_wide.pdb"
|
ProgramDatabaseFile="$(OutDir)/xpath_test_wide.pdb"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
RandomizedBaseAddress="1"
|
RandomizedBaseAddress="1"
|
||||||
DataExecutionPrevention="0"
|
DataExecutionPrevention="0"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManifestTool"
|
Name="VCManifestTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXDCMakeTool"
|
Name="VCXDCMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCBscMakeTool"
|
Name="VCBscMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCFxCopTool"
|
Name="VCFxCopTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAppVerifierTool"
|
Name="VCAppVerifierTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"
|
Name="VCPostBuildEventTool"
|
||||||
/>
|
/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
<Configuration
|
<Configuration
|
||||||
Name="Release|Win32"
|
Name="Release|Win32"
|
||||||
OutputDirectory=".\..\bin"
|
OutputDirectory=".\..\bin"
|
||||||
IntermediateDirectory=".\Release_test_xpath_wide"
|
IntermediateDirectory=".\Release_test_xpath_wide"
|
||||||
ConfigurationType="1"
|
ConfigurationType="1"
|
||||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
||||||
CharacterSet="2"
|
CharacterSet="2"
|
||||||
>
|
>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreBuildEventTool"
|
Name="VCPreBuildEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCustomBuildTool"
|
Name="VCCustomBuildTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXMLDataGeneratorTool"
|
Name="VCXMLDataGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCWebServiceProxyGeneratorTool"
|
Name="VCWebServiceProxyGeneratorTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCMIDLTool"
|
Name="VCMIDLTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCCLCompilerTool"
|
Name="VCCLCompilerTool"
|
||||||
AdditionalOptions="/Zm1000 "
|
AdditionalOptions="/Zm1000 "
|
||||||
AdditionalIncludeDirectories="..\include"
|
AdditionalIncludeDirectories="..\include"
|
||||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
|
||||||
RuntimeLibrary="2"
|
RuntimeLibrary="2"
|
||||||
DisableLanguageExtensions="false"
|
DisableLanguageExtensions="false"
|
||||||
TreatWChar_tAsBuiltInType="true"
|
TreatWChar_tAsBuiltInType="true"
|
||||||
ForceConformanceInForLoopScope="true"
|
ForceConformanceInForLoopScope="true"
|
||||||
RuntimeTypeInfo="true"
|
RuntimeTypeInfo="true"
|
||||||
UsePrecompiledHeader="0"
|
UsePrecompiledHeader="0"
|
||||||
WarningLevel="3"
|
WarningLevel="3"
|
||||||
Detect64BitPortabilityProblems="true"
|
Detect64BitPortabilityProblems="true"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCResourceCompilerTool"
|
Name="VCResourceCompilerTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPreLinkEventTool"
|
Name="VCPreLinkEventTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCLinkerTool"
|
Name="VCLinkerTool"
|
||||||
AdditionalDependencies="..\lib\arabica.lib"
|
AdditionalDependencies="..\lib\arabica.lib"
|
||||||
OutputFile="$(OutDir)/xpath_test_wide.exe"
|
OutputFile="$(OutDir)/xpath_test_wide.exe"
|
||||||
LinkIncremental="1"
|
LinkIncremental="1"
|
||||||
GenerateDebugInformation="true"
|
GenerateDebugInformation="true"
|
||||||
SubSystem="1"
|
SubSystem="1"
|
||||||
OptimizeReferences="2"
|
OptimizeReferences="2"
|
||||||
EnableCOMDATFolding="2"
|
EnableCOMDATFolding="2"
|
||||||
RandomizedBaseAddress="1"
|
RandomizedBaseAddress="1"
|
||||||
DataExecutionPrevention="0"
|
DataExecutionPrevention="0"
|
||||||
TargetMachine="1"
|
TargetMachine="1"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCALinkTool"
|
Name="VCALinkTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManifestTool"
|
Name="VCManifestTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCXDCMakeTool"
|
Name="VCXDCMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCBscMakeTool"
|
Name="VCBscMakeTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCFxCopTool"
|
Name="VCFxCopTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCAppVerifierTool"
|
Name="VCAppVerifierTool"
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCPostBuildEventTool"
|
Name="VCPostBuildEventTool"
|
||||||
/>
|
/>
|
||||||
</Configuration>
|
</Configuration>
|
||||||
</Configurations>
|
</Configurations>
|
||||||
<References>
|
<References>
|
||||||
</References>
|
</References>
|
||||||
<Files>
|
<Files>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Source Files"
|
Name="Source Files"
|
||||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||||
>
|
>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\main_wide.cpp"
|
RelativePath="..\tests\XPath\main_wide.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="Header Files"
|
Name="Header Files"
|
||||||
>
|
>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\arithmetic_test.hpp"
|
RelativePath="..\tests\XPath\arithmetic_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\attr_value_test.hpp"
|
RelativePath="..\tests\XPath\attr_value_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\axis_enumerator_test.hpp"
|
RelativePath="..\tests\XPath\axis_enumerator_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\execute_test.hpp"
|
RelativePath="..\tests\XPath\execute_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\expression_test.hpp"
|
RelativePath="..\tests\XPath\expression_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\logical_test.hpp"
|
RelativePath="..\tests\XPath\logical_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\match_test.hpp"
|
RelativePath="..\tests\XPath\match_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\node_test_test.hpp"
|
RelativePath="..\tests\XPath\node_test_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\parse_test.hpp"
|
RelativePath="..\tests\XPath\parse_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\relational_test.hpp"
|
RelativePath="..\tests\XPath\relational_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\step_test.hpp"
|
RelativePath="..\tests\XPath\step_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\value_test.hpp"
|
RelativePath="..\tests\XPath\value_test.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\XPath\xpath_test_suite.hpp"
|
RelativePath="..\tests\XPath\xpath_test_suite.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
</Filter>
|
||||||
<Filter
|
<Filter
|
||||||
Name="CppUnit"
|
Name="CppUnit"
|
||||||
>
|
>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\CppUnitException.h"
|
RelativePath="..\tests\CppUnit\framework\CppUnitException.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\estring.h"
|
RelativePath="..\tests\CppUnit\framework\estring.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestCaller.h"
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestCase.cpp"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestCase.h"
|
RelativePath="..\tests\CppUnit\framework\TestCaller.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestFailure.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestCase.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestFailure.h"
|
RelativePath="..\tests\CppUnit\framework\TestCase.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestResult.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestFailure.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestResult.h"
|
RelativePath="..\tests\CppUnit\framework\TestFailure.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\TestRunner.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestResult.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\TestRunner.hpp"
|
RelativePath="..\tests\CppUnit\framework\TestResult.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestSuite.cpp"
|
RelativePath="..\tests\CppUnit\TestRunner.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\TestSuite.h"
|
RelativePath="..\tests\CppUnit\TestRunner.hpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\textui\TextTestResult.cpp"
|
RelativePath="..\tests\CppUnit\framework\TestSuite.cpp"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\textui\TextTestResult.h"
|
RelativePath="..\tests\CppUnit\framework\TestSuite.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</Filter>
|
<File
|
||||||
</Files>
|
RelativePath="..\tests\CppUnit\textui\TextTestResult.cpp"
|
||||||
<Globals>
|
>
|
||||||
</Globals>
|
</File>
|
||||||
</VisualStudioProject>
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TextTestResult.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</Filter>
|
||||||
|
</Files>
|
||||||
|
<Globals>
|
||||||
|
</Globals>
|
||||||
|
</VisualStudioProject>
|
||||||
|
|
|
@ -224,6 +224,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -272,6 +272,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -280,6 +280,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -272,6 +272,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -216,6 +216,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -214,6 +214,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -214,6 +214,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -236,6 +236,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -268,6 +268,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -274,6 +274,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -266,6 +266,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -224,6 +224,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -273,6 +273,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -281,6 +281,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -273,6 +273,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -217,6 +217,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -215,6 +215,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -215,6 +215,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -237,6 +237,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -269,6 +269,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -275,6 +275,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -267,6 +267,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
|
@ -225,6 +225,14 @@
|
||||||
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
RelativePath="..\tests\CppUnit\framework\Guards.h"
|
||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath="..\tests\CppUnit\textui\TableTestResult.hpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath="..\tests\CppUnit\framework\Test.h"
|
RelativePath="..\tests\CppUnit\framework\Test.h"
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in a new issue