-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed 'externals/coda-oss/' changes from 54033e70e..c2fc5fc66
c2fc5fc66 add more projects to coda-oss-lite.vcxproj (#694) ceb86c186 support $(PlatformToolset) as a "special" environment variable (#693) d78a8595a OS::getSIMDInstructionSet() utility (#692) 2d2df467d fix `python3 waf dumplib` git-subtree-dir: externals/coda-oss git-subtree-split: c2fc5fc660c2794d77fac2b71cf0dfae76c22c3e
- Loading branch information
Dan Smith
authored and
Dan Smith
committed
Jul 5, 2023
1 parent
1ceb8e3
commit ea623b4
Showing
30 changed files
with
402 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,4 +53,4 @@ project.sln | |
*.vcxproj.user | ||
|
||
# Unit-tests | ||
TEST_*_TMP.* | ||
TEST_*_TMP*.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#include "pch.h" | ||
#include "CppUnitTest.h" | ||
|
||
#include <import/hdf5/lite.h> | ||
#include <hdf5/lite/HDF5Exception.h> | ||
#include <hdf5/lite/Info.h> | ||
#include <hdf5/lite/Read.h> | ||
#include <hdf5/lite/Write.h> | ||
|
||
namespace hdf5_lite | ||
{ | ||
|
||
TEST_CLASS(test_hdf5info){ public: | ||
#include "hdf5.lite/unittests/test_hdf5info.cpp" | ||
}; | ||
|
||
TEST_CLASS(test_hdf5read){ public: | ||
#include "hdf5.lite/unittests/test_hdf5read.cpp" | ||
}; | ||
|
||
TEST_CLASS(test_hdf5write){ public: | ||
#include "hdf5.lite/unittests/test_hdf5write.cpp" | ||
}; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include "pch.h" | ||
#include "CppUnitTest.h" | ||
|
||
#include <import/zip.h> | ||
|
||
namespace zip | ||
{ | ||
TEST_CLASS(unittest_GZip){ public: | ||
#include "zip/unittests/unittest_GZip.cpp" | ||
}; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.