Skip to content
Snippets Groups Projects
Commit 5712dcc5 authored by Victor Kotlyar's avatar Victor Kotlyar
Browse files

Moved ExceptionTest from tapeserver/castor/exception to

common/exception.
Removed tapeserver/castor/exception dir.
parent 3635c762
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,8 @@ find_package (libattr REQUIRED)
find_package (libcap REQUIRED)
find_package (libuuid REQUIRED)
add_subdirectory (exception)
set (COMMON_LIB_SRC_FILES
dataStructures/AdminHost.cpp
dataStructures/AdminUser.cpp
......
......@@ -52,7 +52,7 @@ namespace unitTests {
f2();
}
TEST(castor_exceptions, stacktrace_with_demangling) {
TEST(cta_exceptions, stacktrace_with_demangling) {
try {
Nested x;
} catch (cta::exception::Exception & e) {
......@@ -65,7 +65,7 @@ namespace unitTests {
}
}
TEST(castor_exceptions, stacktrace_in_std_exception) {
TEST(cta_exceptions, stacktrace_in_std_exception) {
try {
Nested x;
} catch (std::exception & e) {
......
......@@ -18,7 +18,6 @@
#
cmake_minimum_required (VERSION 2.6)
add_subdirectory (exception)
add_subdirectory (io)
add_subdirectory (legacymsg)
add_subdirectory (log)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment