Skip to content

Commit 185204d

Browse files
committed
Moved remaining unit tests to unit_tests/modules/performance_analysis
1 parent e41dee6 commit 185204d

41 files changed

Lines changed: 68 additions & 66 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ AC_CONFIG_HEADERS([chimbuko_config.h])
217217
AC_SUBST([PS_FLAGS])
218218

219219
AC_CONFIG_SRCDIR([src/dummy])
220-
AC_CONFIG_FILES([Makefile src/Makefile app/Makefile sphinx/Makefile include/Makefile 3rdparty/Makefile test/Makefile test/unit_tests/Makefile test/unit_tests/ad/Makefile test/unit_tests/pserver/Makefile test/unit_tests/provdb/Makefile test/unit_tests/core/Makefile test/unit_tests/core/param/Makefile test/unit_tests/core/net/Makefile test/unit_tests/core/util/Makefile test/unit_tests/core/ad/Makefile scripts/Makefile scripts/launch/Makefile sim/Makefile sim/src/Makefile sim/main/Makefile sim/include/Makefile])
220+
AC_CONFIG_FILES([Makefile src/Makefile app/Makefile sphinx/Makefile include/Makefile 3rdparty/Makefile test/Makefile test/unit_tests/Makefile test/unit_tests/modules/Makefile test/unit_tests/modules/performance_analysis/Makefile test/unit_tests/modules/performance_analysis/ad/Makefile test/unit_tests/modules/performance_analysis/pserver/Makefile test/unit_tests/modules/performance_analysis/provdb/Makefile test/unit_tests/core/Makefile test/unit_tests/core/param/Makefile test/unit_tests/core/net/Makefile test/unit_tests/core/util/Makefile test/unit_tests/core/ad/Makefile scripts/Makefile scripts/launch/Makefile sim/Makefile sim/src/Makefile sim/main/Makefile sim/include/Makefile])
221221

222222
AC_CONFIG_FILES([app/ws_flask_stat.py:app/ws_flask_stat.py app/sst_view_parse.pl:app/sst_view_parse.pl])
223223
AC_CONFIG_FILES([run_test.sh:run_test.sh test/run_all.sh:test/run_all.sh test/run_ad.sh:test/run_ad.sh test/run_net.sh:test/run_net.sh test/run_provdb_client_test.sh:test/run_provdb_client_test.sh test/run_provdb_autoshutdown_test.sh:test/run_provdb_autoshutdown_test.sh test/unit_tests/run_all.sh:test/unit_tests/run_all.sh test/run_ad_with_provdb.sh:test/run_ad_with_provdb.sh test/run_stat_sender.sh:test/run_stat_sender.sh scripts/launch/run_services.sh:scripts/launch/run_services.sh], [chmod u+x $(echo $ac_tag | sed s/.*\://)])

test/unit_tests/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SUBDIRS = ad pserver provdb core
1+
SUBDIRS = core modules
22

33
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/3rdparty @PS_FLAGS@
44
LDADD = $(top_builddir)/src/libchimbuko.la -lgtest -lstdc++fs
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
SUBDIRS = performance_analysis
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
SUBDIRS = ad pserver provdb

test/unit_tests/ad/ADAnomalyProvenance.cpp renamed to test/unit_tests/modules/performance_analysis/ad/ADAnomalyProvenance.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include<chimbuko/core/param/sstd_param.hpp>
44
#include<chimbuko/core/util/map.hpp>
55
#include "gtest/gtest.h"
6-
#include "../unit_test_common.hpp"
6+
#include "../../../unit_test_common.hpp"
77
#include "unit_test_ad_common.hpp"
88

99
#include<thread>

test/unit_tests/ad/ADCounter.cpp renamed to test/unit_tests/modules/performance_analysis/ad/ADCounter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include<chimbuko/modules/performance_analysis/ad/ADCounter.hpp>
22
#include "gtest/gtest.h"
3-
#include "../unit_test_common.hpp"
3+
#include "../../../unit_test_common.hpp"
44

55
using namespace chimbuko;
66
using namespace chimbuko::modules::performance_analysis;

test/unit_tests/ad/ADEvent.cpp renamed to test/unit_tests/modules/performance_analysis/ad/ADEvent.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include<chimbuko/core/util/map.hpp>
33
#include<chimbuko/core/util/error.hpp>
44
#include "gtest/gtest.h"
5-
#include "../unit_test_common.hpp"
5+
#include "../../../unit_test_common.hpp"
66

77
#include<array>
88
#include<vector>

test/unit_tests/ad/ADExecDataInterface.cpp renamed to test/unit_tests/modules/performance_analysis/ad/ADExecDataInterface.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include<chimbuko/core/message.hpp>
66
#include<chimbuko/modules/performance_analysis/ad/ADExecDataInterface.hpp>
77
#include "gtest/gtest.h"
8-
#include "../unit_test_common.hpp"
8+
#include "../../../unit_test_common.hpp"
99

1010
#include<thread>
1111
#include<chrono>

test/unit_tests/ad/ADLocalAnomalyMetrics.cpp renamed to test/unit_tests/modules/performance_analysis/ad/ADLocalAnomalyMetrics.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include<chimbuko/modules/performance_analysis/ad/ADLocalAnomalyMetrics.hpp>
22
#include<chimbuko/core/util/error.hpp>
33
#include "gtest/gtest.h"
4-
#include "../unit_test_common.hpp"
4+
#include "../../../unit_test_common.hpp"
55

66
using namespace chimbuko;
77
using namespace chimbuko::modules::performance_analysis;

test/unit_tests/ad/ADLocalCounterStatistics.cpp renamed to test/unit_tests/modules/performance_analysis/ad/ADLocalCounterStatistics.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include<chimbuko/modules/performance_analysis/ad/ADLocalCounterStatistics.hpp>
22
#include<chimbuko/modules/performance_analysis/pserver/GlobalCounterStats.hpp>
33
#include "gtest/gtest.h"
4-
#include "../unit_test_common.hpp"
4+
#include "../../../unit_test_common.hpp"
55

66
#include<thread>
77
#include<chrono>

0 commit comments

Comments
 (0)