[cpp-sp] branch main updated: Relocate tests and add missing ctor/dtor.
Scott Cantor
cantor.2 at osu.edu
Tue Nov 19 13:37:38 UTC 2024
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository cpp-sp.
View the commit online:
http://git.shibboleth.net/view/?p=cpp-sp.git;a=commit;h=f93c53e6e2a60473fe9addc84cb80a0063fb30dd
The following commit(s) were added to refs/heads/main by this push:
new f93c53e6 Relocate tests and add missing ctor/dtor.
f93c53e6 is described below
commit f93c53e6e2a60473fe9addc84cb80a0063fb30dd
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Nov 19 08:37:31 2024 -0500
Relocate tests and add missing ctor/dtor.
---
Projects/vc22/Tests.vcxproj | 4 ++--
Projects/vc22/Tests.vcxproj.filters | 4 ++--
shibsp/util/BoostPropertySet.cpp | 8 ++++++++
tests/Makefile.am | 2 +-
tests/{ => util}/PropertyTreeTests.cpp | 0
5 files changed, 13 insertions(+), 5 deletions(-)
diff --git a/Projects/vc22/Tests.vcxproj b/Projects/vc22/Tests.vcxproj
index a5a2122c..837493de 100644
--- a/Projects/vc22/Tests.vcxproj
+++ b/Projects/vc22/Tests.vcxproj
@@ -28,7 +28,7 @@
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\..\tests\AgentTestSuite.cpp" />
- <ClCompile Include="..\..\tests\PropertyTreeTests.cpp" />
+ <ClCompile Include="..\..\tests\util\PropertyTreeTests.cpp" />
</ItemGroup>
<PropertyGroup Label="Globals">
<VCProjectVersion>17.0</VCProjectVersion>
@@ -207,4 +207,4 @@
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
-</Project>
\ No newline at end of file
+</Project>
diff --git a/Projects/vc22/Tests.vcxproj.filters b/Projects/vc22/Tests.vcxproj.filters
index 296d7759..b5da8e1f 100644
--- a/Projects/vc22/Tests.vcxproj.filters
+++ b/Projects/vc22/Tests.vcxproj.filters
@@ -18,8 +18,8 @@
<ClCompile Include="..\..\tests\AgentTestSuite.cpp">
<Filter>Source Files</Filter>
</ClCompile>
- <ClCompile Include="..\..\tests\PropertyTreeTests.cpp">
+ <ClCompile Include="..\..\tests\util\PropertyTreeTests.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
-</Project>
\ No newline at end of file
+</Project>
diff --git a/shibsp/util/BoostPropertySet.cpp b/shibsp/util/BoostPropertySet.cpp
index 406e5553..bab326f8 100644
--- a/shibsp/util/BoostPropertySet.cpp
+++ b/shibsp/util/BoostPropertySet.cpp
@@ -37,6 +37,14 @@ PropertySet::~PropertySet()
{
}
+PropertySet2::PropertySet2()
+{
+}
+
+PropertySet2::~PropertySet2()
+{
+}
+
BoostPropertySet::BoostPropertySet() : m_parent(nullptr)
{
}
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 091d3763..b55b7b94 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -11,7 +11,7 @@ shibsptest_CXXFLAGS = \
shibsptest_SOURCES = \
AgentTestSuite.cpp \
- PropertyTreeTests.cpp
+ util/PropertyTreeTests.cpp
shibsptest_LDADD = \
$(top_builddir)/shibsp/libshibsp.la
diff --git a/tests/PropertyTreeTests.cpp b/tests/util/PropertyTreeTests.cpp
similarity index 100%
rename from tests/PropertyTreeTests.cpp
rename to tests/util/PropertyTreeTests.cpp
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list