From b1096774116ba308fd9257d650b63f1861356c45 Mon Sep 17 00:00:00 2001 From: Jens Bocklage Date: Wed, 8 Apr 2015 15:00:09 +0200 Subject: Adding gtest framework v1.7.0 Adding initial hello world C test case Signed-off-by: Jens Bocklage Signed-off-by: Alexander Wenzel --- gtest-1.7.0/msvc/gtest-md.sln | 45 ++++++++ gtest-1.7.0/msvc/gtest-md.vcproj | 126 ++++++++++++++++++++++ gtest-1.7.0/msvc/gtest.sln | 45 ++++++++ gtest-1.7.0/msvc/gtest.vcproj | 126 ++++++++++++++++++++++ gtest-1.7.0/msvc/gtest_main-md.vcproj | 129 +++++++++++++++++++++++ gtest-1.7.0/msvc/gtest_main.vcproj | 129 +++++++++++++++++++++++ gtest-1.7.0/msvc/gtest_prod_test-md.vcproj | 164 +++++++++++++++++++++++++++++ gtest-1.7.0/msvc/gtest_prod_test.vcproj | 164 +++++++++++++++++++++++++++++ gtest-1.7.0/msvc/gtest_unittest-md.vcproj | 147 ++++++++++++++++++++++++++ gtest-1.7.0/msvc/gtest_unittest.vcproj | 147 ++++++++++++++++++++++++++ 10 files changed, 1222 insertions(+) create mode 100755 gtest-1.7.0/msvc/gtest-md.sln create mode 100755 gtest-1.7.0/msvc/gtest-md.vcproj create mode 100755 gtest-1.7.0/msvc/gtest.sln create mode 100755 gtest-1.7.0/msvc/gtest.vcproj create mode 100755 gtest-1.7.0/msvc/gtest_main-md.vcproj create mode 100755 gtest-1.7.0/msvc/gtest_main.vcproj create mode 100755 gtest-1.7.0/msvc/gtest_prod_test-md.vcproj create mode 100755 gtest-1.7.0/msvc/gtest_prod_test.vcproj create mode 100755 gtest-1.7.0/msvc/gtest_unittest-md.vcproj create mode 100755 gtest-1.7.0/msvc/gtest_unittest.vcproj (limited to 'gtest-1.7.0/msvc') diff --git a/gtest-1.7.0/msvc/gtest-md.sln b/gtest-1.7.0/msvc/gtest-md.sln new file mode 100755 index 0000000..f7908da --- /dev/null +++ b/gtest-1.7.0/msvc/gtest-md.sln @@ -0,0 +1,45 @@ +Microsoft Visual Studio Solution File, Format Version 8.00 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest-md", "gtest-md.vcproj", "{C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_main-md", "gtest_main-md.vcproj", "{3AF54C8A-10BF-4332-9147-F68ED9862033}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_prod_test-md", "gtest_prod_test-md.vcproj", "{24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_unittest-md", "gtest_unittest-md.vcproj", "{4D9FDFB5-986A-4139-823C-F4EE0ED481A2}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfiguration) = preSolution + Debug = Debug + Release = Release + EndGlobalSection + GlobalSection(ProjectConfiguration) = postSolution + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Debug.ActiveCfg = Debug|Win32 + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Debug.Build.0 = Debug|Win32 + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Release.ActiveCfg = Release|Win32 + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE8}.Release.Build.0 = Release|Win32 + {3AF54C8A-10BF-4332-9147-F68ED9862033}.Debug.ActiveCfg = Debug|Win32 + {3AF54C8A-10BF-4332-9147-F68ED9862033}.Debug.Build.0 = Debug|Win32 + {3AF54C8A-10BF-4332-9147-F68ED9862033}.Release.ActiveCfg = Release|Win32 + {3AF54C8A-10BF-4332-9147-F68ED9862033}.Release.Build.0 = Release|Win32 + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}.Debug.ActiveCfg = Debug|Win32 + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}.Debug.Build.0 = Debug|Win32 + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}.Release.ActiveCfg = Release|Win32 + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECB}.Release.Build.0 = Release|Win32 + {4D9FDFB5-986A-4139-823C-F4EE0ED481A2}.Debug.ActiveCfg = Debug|Win32 + {4D9FDFB5-986A-4139-823C-F4EE0ED481A2}.Debug.Build.0 = Debug|Win32 + {4D9FDFB5-986A-4139-823C-F4EE0ED481A2}.Release.ActiveCfg = Release|Win32 + {4D9FDFB5-986A-4139-823C-F4EE0ED481A2}.Release.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal diff --git a/gtest-1.7.0/msvc/gtest-md.vcproj b/gtest-1.7.0/msvc/gtest-md.vcproj new file mode 100755 index 0000000..1c35c3a --- /dev/null +++ b/gtest-1.7.0/msvc/gtest-md.vcproj @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gtest-1.7.0/msvc/gtest.sln b/gtest-1.7.0/msvc/gtest.sln new file mode 100755 index 0000000..ef4b057 --- /dev/null +++ b/gtest-1.7.0/msvc/gtest.sln @@ -0,0 +1,45 @@ +Microsoft Visual Studio Solution File, Format Version 8.00 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest", "gtest.vcproj", "{C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_main", "gtest_main.vcproj", "{3AF54C8A-10BF-4332-9147-F68ED9862032}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_unittest", "gtest_unittest.vcproj", "{4D9FDFB5-986A-4139-823C-F4EE0ED481A1}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gtest_prod_test", "gtest_prod_test.vcproj", "{24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfiguration) = preSolution + Debug = Debug + Release = Release + EndGlobalSection + GlobalSection(ProjectConfiguration) = postSolution + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}.Debug.ActiveCfg = Debug|Win32 + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}.Debug.Build.0 = Debug|Win32 + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}.Release.ActiveCfg = Release|Win32 + {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7}.Release.Build.0 = Release|Win32 + {3AF54C8A-10BF-4332-9147-F68ED9862032}.Debug.ActiveCfg = Debug|Win32 + {3AF54C8A-10BF-4332-9147-F68ED9862032}.Debug.Build.0 = Debug|Win32 + {3AF54C8A-10BF-4332-9147-F68ED9862032}.Release.ActiveCfg = Release|Win32 + {3AF54C8A-10BF-4332-9147-F68ED9862032}.Release.Build.0 = Release|Win32 + {4D9FDFB5-986A-4139-823C-F4EE0ED481A1}.Debug.ActiveCfg = Debug|Win32 + {4D9FDFB5-986A-4139-823C-F4EE0ED481A1}.Debug.Build.0 = Debug|Win32 + {4D9FDFB5-986A-4139-823C-F4EE0ED481A1}.Release.ActiveCfg = Release|Win32 + {4D9FDFB5-986A-4139-823C-F4EE0ED481A1}.Release.Build.0 = Release|Win32 + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}.Debug.ActiveCfg = Debug|Win32 + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}.Debug.Build.0 = Debug|Win32 + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}.Release.ActiveCfg = Release|Win32 + {24848551-EF4F-47E8-9A9D-EA4D49BC3ECA}.Release.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal diff --git a/gtest-1.7.0/msvc/gtest.vcproj b/gtest-1.7.0/msvc/gtest.vcproj new file mode 100755 index 0000000..a8373ce --- /dev/null +++ b/gtest-1.7.0/msvc/gtest.vcproj @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gtest-1.7.0/msvc/gtest_main-md.vcproj b/gtest-1.7.0/msvc/gtest_main-md.vcproj new file mode 100755 index 0000000..b5379fe --- /dev/null +++ b/gtest-1.7.0/msvc/gtest_main-md.vcproj @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gtest-1.7.0/msvc/gtest_main.vcproj b/gtest-1.7.0/msvc/gtest_main.vcproj new file mode 100755 index 0000000..e8b763c --- /dev/null +++ b/gtest-1.7.0/msvc/gtest_main.vcproj @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gtest-1.7.0/msvc/gtest_prod_test-md.vcproj b/gtest-1.7.0/msvc/gtest_prod_test-md.vcproj new file mode 100755 index 0000000..05b05d9 --- /dev/null +++ b/gtest-1.7.0/msvc/gtest_prod_test-md.vcproj @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gtest-1.7.0/msvc/gtest_prod_test.vcproj b/gtest-1.7.0/msvc/gtest_prod_test.vcproj new file mode 100755 index 0000000..6d7a2f0 --- /dev/null +++ b/gtest-1.7.0/msvc/gtest_prod_test.vcproj @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gtest-1.7.0/msvc/gtest_unittest-md.vcproj b/gtest-1.7.0/msvc/gtest_unittest-md.vcproj new file mode 100755 index 0000000..38a5e56 --- /dev/null +++ b/gtest-1.7.0/msvc/gtest_unittest-md.vcproj @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/gtest-1.7.0/msvc/gtest_unittest.vcproj b/gtest-1.7.0/msvc/gtest_unittest.vcproj new file mode 100755 index 0000000..cb1f52b --- /dev/null +++ b/gtest-1.7.0/msvc/gtest_unittest.vcproj @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.1