Merge branch 'main' into feature/pythonInterface/eos
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
#eos:
|
||||
# helm: "eos/helm_table.dat"
|
||||
eos:
|
||||
helm: "eos/helm_table.dat"
|
||||
mesh:
|
||||
polySphere: "mesh/core_midres.msh"
|
||||
|
||||
@@ -2,7 +2,8 @@ yaml_cpp_cmake_options = cmake.subproject_options()
|
||||
yaml_cpp_cmake_options.add_cmake_defines({
|
||||
'CMAKE_POLICY_VERSION_MINIMUM': '3.5',
|
||||
'BUILD_SHARED_LIBS': 'ON',
|
||||
'CMAKE_SKIP_INSTALL_RULES': 'ON'
|
||||
'CMAKE_SKIP_INSTALL_RULES': 'ON',
|
||||
'YAML_CPP_BUILD_TESTS': 'OFF'
|
||||
})
|
||||
yaml_cpp_sp = cmake.subproject(
|
||||
'yaml-cpp',
|
||||
|
||||
@@ -11,7 +11,7 @@ foreach test_file : test_sources
|
||||
test_exe = executable(
|
||||
exe_name,
|
||||
test_file,
|
||||
dependencies: [gtest_dep, network_dep, gtest_main],
|
||||
dependencies: [gtest_dep, gtest_main, network_dep],
|
||||
include_directories: include_directories('../../src/network/public'),
|
||||
link_with: libnetwork, # Link the dobj library
|
||||
install_rpath: '@loader_path/../../src' # Ensure runtime library path resolves correctly
|
||||
|
||||
@@ -36,7 +36,7 @@ TEST_F(resourceManagerTest, getAvaliableResources) {
|
||||
serif::config::Config::getInstance().loadConfig(TEST_CONFIG);
|
||||
serif::resource::ResourceManager& rm = serif::resource::ResourceManager::getInstance();
|
||||
std::vector<std::string> resources = rm.getAvailableResources();
|
||||
std::set<std::string> expected = {"eos:helm", "mesh:sphere"};
|
||||
std::set<std::string> expected = {"eos:helm", "mesh:polySphere"};
|
||||
std::set<std::string> actual(resources.begin(), resources.end());
|
||||
EXPECT_EQ(expected, actual);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user