Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dCache
cta
Commits
cc393bfc
Commit
cc393bfc
authored
10 years ago
by
Steven Murray
Browse files
Options
Downloads
Patches
Plain Diff
Removed unused file cmake/FindGTest.cmake
parent
3c0bfaa4
Branches
release_4.8.3
release_4.8.3_spec
Branches containing commit
Tags
v4.8.3-1
v5.8.3-1
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
castor/tape/tapeserver/drive/CMakeLists.txt
+1
-1
1 addition, 1 deletion
castor/tape/tapeserver/drive/CMakeLists.txt
cmake/FindGTest.cmake
+0
-158
0 additions, 158 deletions
cmake/FindGTest.cmake
test/CMakeLists.txt
+3
-3
3 additions, 3 deletions
test/CMakeLists.txt
with
4 additions
and
162 deletions
castor/tape/tapeserver/drive/CMakeLists.txt
+
1
−
1
View file @
cc393bfc
...
...
@@ -32,6 +32,6 @@ target_link_libraries(TapeDriveReadWriteTest
castorcommon
castorclient
castorTapeServerDaemon
${
GTEST_LIBRARY
}
gtest
gmock
pthread
)
This diff is collapsed.
Click to expand it.
cmake/FindGTest.cmake
deleted
100644 → 0
+
0
−
158
View file @
3c0bfaa4
# Locate the Google C++ Testing Framework.
#
# Defines the following variables:
#
# GTEST_FOUND - Found the Google Testing framework
# GTEST_INCLUDE_DIRS - Include directories
#
# Also defines the library variables below as normal
# variables. These contain debug/optimized keywords when
# a debugging library is found.
#
# GTEST_BOTH_LIBRARIES - Both libgtest & libgtest-main
# GTEST_LIBRARIES - libgtest
# GTEST_MAIN_LIBRARIES - libgtest-main
#
# Accepts the following variables as input:
#
# GTEST_ROOT - (as a CMake or environment variable)
# The root directory of the gtest install prefix
#
# GTEST_MSVC_SEARCH - If compiling with MSVC, this variable can be set to
# "MD" or "MT" to enable searching a GTest build tree
# (defaults: "MD")
#
#-----------------------
# Example Usage:
#
# enable_testing()
# find_package(GTest REQUIRED)
# include_directories(${GTEST_INCLUDE_DIRS})
#
# add_executable(foo foo.cc)
# target_link_libraries(foo ${GTEST_BOTH_LIBRARIES})
#
# add_test(AllTestsInFoo foo)
#
#-----------------------
#
# If you would like each Google test to show up in CTest as
# a test you may use the following macro.
# NOTE: It will slow down your tests by running an executable
# for each test and test fixture. You will also have to rerun
# CMake after adding or removing tests or test fixtures.
#
# GTEST_ADD_TESTS(executable extra_args ARGN)
# executable = The path to the test executable
# extra_args = Pass a list of extra arguments to be passed to
# executable enclosed in quotes (or "" for none)
# ARGN = A list of source files to search for tests & test
# fixtures.
#
# Example:
# set(FooTestArgs --foo 1 --bar 2)
# add_executable(FooTest FooUnitTest.cc)
# GTEST_ADD_TESTS(FooTest "${FooTestArgs}" FooUnitTest.cc)
#=============================================================================
# Copyright 2009 Kitware, Inc.
# Copyright 2009 Philip Lowman <philip@yhbt.com>
# Copyright 2009 Daniel Blezek <blezek@gmail.com>
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=============================================================================
# (To distribute this file outside of CMake, substitute the full
# License text for the above reference.)
#
# Thanks to Daniel Blezek <blezek@gmail.com> for the GTEST_ADD_TESTS code
function
(
GTEST_ADD_TESTS executable extra_args
)
if
(
NOT ARGN
)
message
(
FATAL_ERROR
"Missing ARGN: Read the documentation for GTEST_ADD_TESTS"
)
endif
()
foreach
(
source
${
ARGN
}
)
file
(
READ
"
${
source
}
"
contents
)
string
(
REGEX MATCHALL
"TEST_?F?
\\
(([A-Za-z_0-9 ,]+)
\\
)"
found_tests
${
contents
}
)
foreach
(
hit
${
found_tests
}
)
string
(
REGEX REPLACE
".*
\\
( *([A-Za-z_0-9]+), *([A-Za-z_0-9]+) *
\\
).*"
"
\\
1.
\\
2"
test_name
${
hit
}
)
add_test
(
${
test_name
}
${
executable
}
--gtest_filter=
${
test_name
}
${
extra_args
}
)
endforeach
()
endforeach
()
endfunction
()
function
(
_gtest_append_debugs _endvar _library
)
if
(
${
_library
}
AND
${
_library
}
_DEBUG
)
set
(
_output optimized
${${
_library
}}
debug
${${
_library
}
_DEBUG
}
)
else
()
set
(
_output
${${
_library
}}
)
endif
()
set
(
${
_endvar
}
${
_output
}
PARENT_SCOPE
)
endfunction
()
function
(
_gtest_find_library _name
)
find_library
(
${
_name
}
NAMES
${
ARGN
}
HINTS
ENV GTEST_ROOT
${
GTEST_ROOT
}
PATH_SUFFIXES
${
_gtest_libpath_suffixes
}
)
mark_as_advanced
(
${
_name
}
)
endfunction
()
#
if
(
NOT DEFINED GTEST_MSVC_SEARCH
)
set
(
GTEST_MSVC_SEARCH MD
)
endif
()
set
(
_gtest_libpath_suffixes lib
)
if
(
MSVC
)
if
(
GTEST_MSVC_SEARCH STREQUAL
"MD"
)
list
(
APPEND _gtest_libpath_suffixes
msvc/gtest-md/Debug
msvc/gtest-md/Release
)
elseif
(
GTEST_MSVC_SEARCH STREQUAL
"MT"
)
list
(
APPEND _gtest_libpath_suffixes
msvc/gtest/Debug
msvc/gtest/Release
)
endif
()
endif
()
find_path
(
GTEST_INCLUDE_DIR gtest/gtest.h
HINTS
$ENV{GTEST_ROOT}/include
${
GTEST_ROOT
}
/include
)
mark_as_advanced
(
GTEST_INCLUDE_DIR
)
if
(
MSVC AND GTEST_MSVC_SEARCH STREQUAL
"MD"
)
# The provided /MD project files for Google Test add -md suffixes to the
# library names.
_gtest_find_library
(
GTEST_LIBRARY gtest-md gtest
)
_gtest_find_library
(
GTEST_LIBRARY_DEBUG gtest-mdd gtestd
)
_gtest_find_library
(
GTEST_MAIN_LIBRARY gtest_main-md gtest_main
)
_gtest_find_library
(
GTEST_MAIN_LIBRARY_DEBUG gtest_main-mdd gtest_maind
)
else
()
_gtest_find_library
(
GTEST_LIBRARY gtest
)
_gtest_find_library
(
GTEST_LIBRARY_DEBUG gtestd
)
_gtest_find_library
(
GTEST_MAIN_LIBRARY gtest_main
)
_gtest_find_library
(
GTEST_MAIN_LIBRARY_DEBUG gtest_maind
)
endif
()
INCLUDE
(
FindPackageHandleStandardArgs
)
FIND_PACKAGE_HANDLE_STANDARD_ARGS
(
GTest DEFAULT_MSG GTEST_LIBRARY GTEST_INCLUDE_DIR GTEST_MAIN_LIBRARY
)
if
(
GTEST_FOUND
)
set
(
GTEST_INCLUDE_DIRS
${
GTEST_INCLUDE_DIR
}
)
_gtest_append_debugs
(
GTEST_LIBRARIES GTEST_LIBRARY
)
_gtest_append_debugs
(
GTEST_MAIN_LIBRARIES GTEST_MAIN_LIBRARY
)
set
(
GTEST_BOTH_LIBRARIES
${
GTEST_LIBRARIES
}
${
GTEST_MAIN_LIBRARIES
}
)
endif
()
This diff is collapsed.
Click to expand it.
test/CMakeLists.txt
+
3
−
3
View file @
cc393bfc
...
...
@@ -201,7 +201,7 @@ target_link_libraries(castorUnitTests
castortapegatewayprotocol
castorTapeServerDaemonTestDummies
castorTapeServerDaemon
${
GTEST_LIBRARY
}
gtest
gmock
pthread
castorcommon
...
...
@@ -249,7 +249,7 @@ target_link_libraries(castorThreadedUnitTests
castorvmgr
castorrfio
gmock
${
GTEST_LIBRARY
}
gtest
pthread
TapeDrive
SCSI
...
...
@@ -271,7 +271,7 @@ target_link_libraries(castorMultiprocessUnitTests
System
Utils File
castorserver
${
GTEST_LIBRARY
}
gmock pthread castorcommon castorclient
)
gtest
gmock pthread castorcommon castorclient
)
install
(
TARGETS
castorUnitTests
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment