mirror of
https://github.com/marzer/tomlplusplus.git
synced 2025-02-24 12:41:05 +00:00
There's no new functionality here. It's purely tooling + CI stuff: - moved `python` => `tools` - moved documentation images to subfolder - moved `vs/tests` to tests/vs projects - moved `vs` solution etc to root - added semicolons to macros - added cpp.hint to help VS intellisense - migrated documentation generation to external lib
21 lines
828 B
XML
21 lines
828 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RunSettings>
|
|
<!-- Configurations that affect the Test Framework -->
|
|
<RunConfiguration>
|
|
<MaxCpuCount>0</MaxCpuCount>
|
|
<ResultsDirectory>..\build\TestResults</ResultsDirectory><!-- Path relative to solution directory -->
|
|
<TestSessionTimeout>60000</TestSessionTimeout><!-- Milliseconds -->
|
|
</RunConfiguration>
|
|
|
|
<!-- Adapter Specific sections -->
|
|
<Catch2Adapter>
|
|
<DiscoverCommandLine>--verbosity high --list-tests *</DiscoverCommandLine>
|
|
<DiscoverTimeout>500</DiscoverTimeout><!-- Milliseconds -->
|
|
<FilenameFilter>(?i:test)</FilenameFilter>
|
|
<WorkingDirectoryRoot>Solution</WorkingDirectoryRoot>
|
|
<WorkingDirectory>..\tests\</WorkingDirectory>
|
|
<MessageFormat>AdditionalInfo</MessageFormat>
|
|
</Catch2Adapter>
|
|
|
|
</RunSettings>
|