diff options
| author | Nicole Mazzuca <mazzucan@outlook.com> | 2019-07-19 23:20:28 -0700 |
|---|---|---|
| committer | Nicole Mazzuca <mazzucan@outlook.com> | 2019-07-19 23:20:28 -0700 |
| commit | 0d8bba52e4c0a861b25f9d32006bfde9b749e09f (patch) | |
| tree | 5e0a29aeb6b3aa79925ca1191ea41129484f48e2 /toolsrc/src/vcpkg-test/catch.cpp | |
| parent | c55ea0a0d5229b9dd79aa8ea888f6c0408f9e5dd (diff) | |
| download | vcpkg-0d8bba52e4c0a861b25f9d32006bfde9b749e09f.tar.gz vcpkg-0d8bba52e4c0a861b25f9d32006bfde9b749e09f.zip | |
allow tests to run on older standard libraries
Diffstat (limited to 'toolsrc/src/vcpkg-test/catch.cpp')
| -rw-r--r-- | toolsrc/src/vcpkg-test/catch.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/toolsrc/src/vcpkg-test/catch.cpp b/toolsrc/src/vcpkg-test/catch.cpp new file mode 100644 index 000000000..8b5d1aa15 --- /dev/null +++ b/toolsrc/src/vcpkg-test/catch.cpp @@ -0,0 +1,11 @@ +#define CATCH_CONFIG_RUNNER +#include <vcpkg-test/catch.h> + +#include <vcpkg/base/system.debug.h> + +int main(int argc, char** argv) +{ + vcpkg::Debug::g_debugging = true; + + return Catch::Session().run(argc, argv); +} |
