Commit d40e5970 authored by Vladimir Bashkirtsev's avatar Vladimir Bashkirtsev

Updated ceph to 15.2.17

parent 941b2d1c
......@@ -30,27 +30,26 @@ all: ceph-config ceph-sudoer
mount --bind tmp /tmp
ln -s /lib /lib64
tar xf ceph-15.2.15.tar.gz
patch -Np1 -d ceph-15.2.15 < ceph-15.2.15-fix_v2_frame.patch
patch -Np1 -d ceph-15.2.15 < ceph-15.2.15-fix_cpu_detection.patch
patch -Np1 -d ceph-15.2.15 < ceph-15.2.15-fix_tests.patch
patch -Np1 -d ceph-15.2.15 < ceph-15.2.15-fix_ceph-volume_systemd_unit.patch
patch -Np1 -d ceph-15.2.15 < ceph-15.2.15-no_git.patch
patch -Np1 -d ceph-15.2.15 < ceph-15.2.15-fix_librbd_duplicate.patch
patch -Np1 -d ceph-15.2.15 < ceph-15.2.15-fix_ErasureCodeShec.patch
patch -Np1 -d ceph-15.2.15 < ceph-15.2.15-fix_mypy.patch
patch -Np1 -d ceph-15.2.15 < ceph-15.2.15-fix_pip.patch
tar xf ceph-15.2.17.tar.gz
patch -Np1 -d ceph-15.2.17 < ceph-15.2.17-fix_v2_frame.patch
patch -Np1 -d ceph-15.2.17 < ceph-15.2.17-fix_cpu_detection.patch
patch -Np1 -d ceph-15.2.17 < ceph-15.2.17-fix_tests.patch
patch -Np1 -d ceph-15.2.17 < ceph-15.2.17-fix_ceph-volume_systemd_unit.patch
patch -Np1 -d ceph-15.2.17 < ceph-15.2.17-no_git.patch
patch -Np1 -d ceph-15.2.17 < ceph-15.2.17-fix_librbd_duplicate.patch
patch -Np1 -d ceph-15.2.17 < ceph-15.2.17-fix_ErasureCodeShec.patch
patch -Np1 -d ceph-15.2.17 < ceph-15.2.17-fix_pip.patch
if [ `uname -m` = 'armv7l' ] ; then \
patch -Np1 -d ceph-15.2.15 < ceph-15.2.15-arm32_fix.patch ; \
patch -Np1 -d ceph-15.2.15 < ceph-15.2.15-arm32_fix_tests.patch ; \
patch -Np1 -d ceph-15.2.17 < ceph-15.2.17-arm32_fix.patch ; \
patch -Np1 -d ceph-15.2.17 < ceph-15.2.17-arm32_fix_tests.patch ; \
fi
cd ceph-15.2.15 && ./do_cmake.sh -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LIBEXECDIR=/lib -DWITH_SPDK=OFF -DWITH_RDMA=OFF -DWITH_RADOSGW_AMQP_ENDPOINT=OFF -DWITH_PYTHON2=OFF -DWITH_PYTHON3=ON -DALLOCATOR=tcmalloc_minimal
$(MAKE) -C ceph-15.2.15/build npm_config_cache=/build/.npm NODE_OPTIONS="--max-old-space-size=3072"
cd ceph-15.2.17 && ./do_cmake.sh -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_SYSCONFDIR=/etc -DCMAKE_INSTALL_LIBEXECDIR=/lib -DWITH_SPDK=OFF -DWITH_RDMA=OFF -DWITH_RADOSGW_AMQP_ENDPOINT=OFF -DWITH_PYTHON2=OFF -DWITH_PYTHON3=ON -DALLOCATOR=tcmalloc_minimal
$(MAKE) -C ceph-15.2.17/build npm_config_cache=/build/.npm NODE_OPTIONS="--max-old-space-size=3072"
hostname localhost
cd ceph-15.2.15 && tar xf ../ceph-object-corpus.tar.xz
cd ceph-15.2.15/build && CTEST_OUTPUT_ON_FAILURE=1 NODE_OPTIONS="--max-old-space-size=3072" VIRTUALENV_SYSTEM_SITE_PACKAGES=True SETUPTOOLS_USE_DISTUTILS=stdlib make check
cd ceph-15.2.17 && tar xf ../ceph-object-corpus.tar.xz
cd ceph-15.2.17/build && CTEST_OUTPUT_ON_FAILURE=1 NODE_OPTIONS="--max-old-space-size=3072" VIRTUALENV_SYSTEM_SITE_PACKAGES=True SETUPTOOLS_USE_DISTUTILS=stdlib make check
$(MAKE) -C ceph-15.2.15/build install
$(MAKE) -C ceph-15.2.17/build install
rm /usr/bin/ceph_test*
find / -name *.pyc -exec rm -f '{}' ';'
find / -name *.js.map -exec rm -f '{}' ';'
......@@ -97,7 +96,7 @@ all: ceph-config ceph-sudoer
swapoff swap
rm -rf swap
rm -rf ceph-15.2.15
rm -rf ceph-15.2.17
ceph-config:
define CEPH_CONFIG
......
diff -uNr ceph-15.2.15/src/pybind/mgr/dashboard/cherrypy_backports.py ceph-15.2.15-fix_mypy/src/pybind/mgr/dashboard/cherrypy_backports.py
--- ceph-15.2.15/src/pybind/mgr/dashboard/cherrypy_backports.py 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-fix_mypy/src/pybind/mgr/dashboard/cherrypy_backports.py 2022-01-25 15:02:42.034121126 +1030
@@ -75,7 +75,7 @@
if v < StrictVersion("9.0.0"):
from cherrypy.wsgiserver.ssl_builtin import BuiltinSSLAdapter as builtin_ssl
else:
- from cheroot.ssl.builtin import BuiltinSSLAdapter as builtin_ssl
+ from cheroot.ssl.builtin import BuiltinSSLAdapter as builtin_ssl # type: ignore
builtin_ssl.wrap = new_wrap(builtin_ssl.wrap)
diff -uNr ceph-15.2.15/src/client/Client.cc ceph-15.2.15-arm32_fix/src/client/Client.cc
--- ceph-15.2.15/src/client/Client.cc 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix/src/client/Client.cc 2023-01-14 18:09:07.004551138 +1030
@@ -11059,7 +11059,7 @@
diff -uNr ceph-15.2.17/src/client/Client.cc ceph-15.2.17-arm32_fix/src/client/Client.cc
--- ceph-15.2.17/src/client/Client.cc 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-arm32_fix/src/client/Client.cc 2023-02-09 13:45:11.664577350 +1030
@@ -11067,7 +11067,7 @@
ldout(cct, 20) << __func__ << " " << in << " " << in->ino << " -> " << in->ll_ref << dendl;
}
......@@ -10,7 +10,7 @@ diff -uNr ceph-15.2.15/src/client/Client.cc ceph-15.2.15-arm32_fix/src/client/Cl
{
in->ll_put(num);
ldout(cct, 20) << __func__ << " " << in << " " << in->ino << " " << num << " -> " << in->ll_ref << dendl;
@@ -11100,7 +11100,7 @@
@@ -11108,7 +11108,7 @@
}
}
......@@ -19,7 +19,7 @@ diff -uNr ceph-15.2.15/src/client/Client.cc ceph-15.2.15-arm32_fix/src/client/Cl
{
inodeno_t ino = in->ino;
@@ -11129,7 +11129,7 @@
@@ -11137,7 +11137,7 @@
return last;
}
......@@ -28,9 +28,9 @@ diff -uNr ceph-15.2.15/src/client/Client.cc ceph-15.2.15-arm32_fix/src/client/Cl
{
std::lock_guard lock(client_lock);
return _ll_forget(in, count);
diff -uNr ceph-15.2.15/src/client/Client.h ceph-15.2.15-arm32_fix/src/client/Client.h
--- ceph-15.2.15/src/client/Client.h 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix/src/client/Client.h 2023-01-14 18:09:07.006551144 +1030
diff -uNr ceph-15.2.17/src/client/Client.h ceph-15.2.17-arm32_fix/src/client/Client.h
--- ceph-15.2.17/src/client/Client.h 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-arm32_fix/src/client/Client.h 2023-02-09 13:45:11.664577350 +1030
@@ -484,7 +484,7 @@
int ll_lookupx(Inode *parent, const char *name, Inode **out,
struct ceph_statx *stx, unsigned want, unsigned flags,
......@@ -58,9 +58,9 @@ diff -uNr ceph-15.2.15/src/client/Client.h ceph-15.2.15-arm32_fix/src/client/Cli
uint32_t deleg_timeout = 0;
diff -uNr ceph-15.2.15/src/client/fuse_ll.cc ceph-15.2.15-arm32_fix/src/client/fuse_ll.cc
--- ceph-15.2.15/src/client/fuse_ll.cc 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix/src/client/fuse_ll.cc 2023-01-14 18:09:07.006551144 +1030
diff -uNr ceph-15.2.17/src/client/fuse_ll.cc ceph-15.2.17-arm32_fix/src/client/fuse_ll.cc
--- ceph-15.2.17/src/client/fuse_ll.cc 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-arm32_fix/src/client/fuse_ll.cc 2023-02-09 13:45:11.665577353 +1030
@@ -192,7 +192,7 @@
}
......@@ -70,9 +70,9 @@ diff -uNr ceph-15.2.15/src/client/fuse_ll.cc ceph-15.2.15-arm32_fix/src/client/f
{
CephFuse::Handle *cfuse = fuse_ll_req_prepare(req);
cfuse->client->ll_forget(cfuse->iget(ino), nlookup+1);
diff -uNr ceph-15.2.15/src/common/options.h ceph-15.2.15-arm32_fix/src/common/options.h
--- ceph-15.2.15/src/common/options.h 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix/src/common/options.h 2023-01-14 18:09:07.007551147 +1030
diff -uNr ceph-15.2.17/src/common/options.h ceph-15.2.17-arm32_fix/src/common/options.h
--- ceph-15.2.17/src/common/options.h 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-arm32_fix/src/common/options.h 2023-02-09 13:45:11.665577353 +1030
@@ -35,7 +35,7 @@
case TYPE_ADDR: return "entity_addr_t";
case TYPE_ADDRVEC: return "entity_addrvec_t";
......@@ -100,9 +100,9 @@ diff -uNr ceph-15.2.15/src/common/options.h ceph-15.2.15-arm32_fix/src/common/op
case TYPE_SECS:
v = std::chrono::seconds{new_value}; break;
default:
diff -uNr ceph-15.2.15/src/librbd/object_map/DiffRequest.cc ceph-15.2.15-arm32_fix/src/librbd/object_map/DiffRequest.cc
--- ceph-15.2.15/src/librbd/object_map/DiffRequest.cc 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix/src/librbd/object_map/DiffRequest.cc 2023-01-14 18:09:39.842649387 +1030
diff -uNr ceph-15.2.17/src/librbd/object_map/DiffRequest.cc ceph-15.2.17-arm32_fix/src/librbd/object_map/DiffRequest.cc
--- ceph-15.2.17/src/librbd/object_map/DiffRequest.cc 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-arm32_fix/src/librbd/object_map/DiffRequest.cc 2023-02-09 13:45:11.665577353 +1030
@@ -175,7 +175,7 @@
m_object_map.resize(num_objs);
}
......@@ -112,9 +112,9 @@ diff -uNr ceph-15.2.15/src/librbd/object_map/DiffRequest.cc ceph-15.2.15-arm32_f
if (prev_object_diff_state_size < num_objs) {
// the diff state should be the largest of all snapshots in the set
m_object_diff_state->resize(num_objs);
diff -uNr ceph-15.2.15/src/mds/PurgeQueue.h ceph-15.2.15-arm32_fix/src/mds/PurgeQueue.h
--- ceph-15.2.15/src/mds/PurgeQueue.h 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix/src/mds/PurgeQueue.h 2023-01-14 18:09:07.007551147 +1030
diff -uNr ceph-15.2.17/src/mds/PurgeQueue.h ceph-15.2.17-arm32_fix/src/mds/PurgeQueue.h
--- ceph-15.2.17/src/mds/PurgeQueue.h 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-arm32_fix/src/mds/PurgeQueue.h 2023-02-09 13:45:11.665577353 +1030
@@ -219,6 +219,6 @@
size_t purge_item_journal_size;
......@@ -123,9 +123,9 @@ diff -uNr ceph-15.2.15/src/mds/PurgeQueue.h ceph-15.2.15-arm32_fix/src/mds/Purge
+ size_t files_high_water = 0;
};
#endif
diff -uNr ceph-15.2.15/src/pybind/mgr/cephadm/module.py ceph-15.2.15-arm32_fix/src/pybind/mgr/cephadm/module.py
--- ceph-15.2.15/src/pybind/mgr/cephadm/module.py 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix/src/pybind/mgr/cephadm/module.py 2023-01-14 18:09:07.008551150 +1030
diff -uNr ceph-15.2.17/src/pybind/mgr/cephadm/module.py ceph-15.2.17-arm32_fix/src/pybind/mgr/cephadm/module.py
--- ceph-15.2.17/src/pybind/mgr/cephadm/module.py 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-arm32_fix/src/pybind/mgr/cephadm/module.py 2023-02-09 13:45:11.666577356 +1030
@@ -342,7 +342,7 @@
raise RuntimeError("unable to read cephadm at '%s': %s" % (
path, str(e)))
......@@ -135,20 +135,9 @@ diff -uNr ceph-15.2.15/src/pybind/mgr/cephadm/module.py ceph-15.2.15-arm32_fix/s
self._reconfig_ssh()
diff -uNr ceph-15.2.15/src/pybind/mgr/dashboard/frontend/package.json ceph-15.2.15-arm32_fix/src/pybind/mgr/dashboard/frontend/package.json
--- ceph-15.2.15/src/pybind/mgr/dashboard/frontend/package.json 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix/src/pybind/mgr/dashboard/frontend/package.json 2023-01-14 18:09:07.009551153 +1030
@@ -121,7 +121,6 @@
"@types/node": "12.12.34",
"@types/simplebar": "5.1.1",
"codelyzer": "5.2.2",
- "cypress": "4.4.0",
"html-linter": "1.1.1",
"htmllint-cli": "0.0.7",
"jest": "25.5.4",
diff -uNr ceph-15.2.15/src/test/common/test_json_formattable.cc ceph-15.2.15-arm32_fix/src/test/common/test_json_formattable.cc
--- ceph-15.2.15/src/test/common/test_json_formattable.cc 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix/src/test/common/test_json_formattable.cc 2023-01-14 18:09:07.009551153 +1030
diff -uNr ceph-15.2.17/src/test/common/test_json_formattable.cc ceph-15.2.17-arm32_fix/src/test/common/test_json_formattable.cc
--- ceph-15.2.17/src/test/common/test_json_formattable.cc 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-arm32_fix/src/test/common/test_json_formattable.cc 2023-02-09 13:45:11.666577356 +1030
@@ -371,7 +371,7 @@
struct2() {
......@@ -158,9 +147,9 @@ diff -uNr ceph-15.2.15/src/test/common/test_json_formattable.cc ceph-15.2.15-arm
v.resize((i >> 16) % 16 + 1);
}
diff -uNr ceph-15.2.15/src/test/libcephfs/ceph_pthread_self.h ceph-15.2.15-arm32_fix/src/test/libcephfs/ceph_pthread_self.h
--- ceph-15.2.15/src/test/libcephfs/ceph_pthread_self.h 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix/src/test/libcephfs/ceph_pthread_self.h 2023-01-14 18:09:07.009551153 +1030
diff -uNr ceph-15.2.17/src/test/libcephfs/ceph_pthread_self.h ceph-15.2.17-arm32_fix/src/test/libcephfs/ceph_pthread_self.h
--- ceph-15.2.17/src/test/libcephfs/ceph_pthread_self.h 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-arm32_fix/src/test/libcephfs/ceph_pthread_self.h 2023-02-09 13:45:11.666577356 +1030
@@ -25,7 +25,7 @@
static_assert(std::is_convertible_v<decltype(me), uint64_t> ||
std::is_pointer_v<decltype(me)>,
......@@ -170,9 +159,9 @@ diff -uNr ceph-15.2.15/src/test/libcephfs/ceph_pthread_self.h ceph-15.2.15-arm32
}
#endif
diff -uNr ceph-15.2.15/src/test/rbd_mirror/image_deleter/test_mock_TrashWatcher.cc ceph-15.2.15-arm32_fix/src/test/rbd_mirror/image_deleter/test_mock_TrashWatcher.cc
--- ceph-15.2.15/src/test/rbd_mirror/image_deleter/test_mock_TrashWatcher.cc 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix/src/test/rbd_mirror/image_deleter/test_mock_TrashWatcher.cc 2023-01-14 18:09:07.009551153 +1030
diff -uNr ceph-15.2.17/src/test/rbd_mirror/image_deleter/test_mock_TrashWatcher.cc ceph-15.2.17-arm32_fix/src/test/rbd_mirror/image_deleter/test_mock_TrashWatcher.cc
--- ceph-15.2.17/src/test/rbd_mirror/image_deleter/test_mock_TrashWatcher.cc 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-arm32_fix/src/test/rbd_mirror/image_deleter/test_mock_TrashWatcher.cc 2023-02-09 13:45:11.667577359 +1030
@@ -162,7 +162,7 @@
int r) {
bufferlist bl;
......@@ -182,9 +171,9 @@ diff -uNr ceph-15.2.15/src/test/rbd_mirror/image_deleter/test_mock_TrashWatcher.
bufferlist out_bl;
encode(images, out_bl);
diff -uNr ceph-15.2.15/src/tools/rbd_mirror/image_replayer/snapshot/Replayer.cc ceph-15.2.15-arm32_fix/src/tools/rbd_mirror/image_replayer/snapshot/Replayer.cc
--- ceph-15.2.15/src/tools/rbd_mirror/image_replayer/snapshot/Replayer.cc 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix/src/tools/rbd_mirror/image_replayer/snapshot/Replayer.cc 2023-01-14 18:09:07.010551156 +1030
diff -uNr ceph-15.2.17/src/tools/rbd_mirror/image_replayer/snapshot/Replayer.cc ceph-15.2.17-arm32_fix/src/tools/rbd_mirror/image_replayer/snapshot/Replayer.cc
--- ceph-15.2.17/src/tools/rbd_mirror/image_replayer/snapshot/Replayer.cc 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-arm32_fix/src/tools/rbd_mirror/image_replayer/snapshot/Replayer.cc 2023-02-09 13:45:11.667577359 +1030
@@ -253,7 +253,7 @@
json_spirit::mObject root_obj;
......
diff -uNr ceph-15.2.15/src/test/librados_test_stub/TestIoCtxImpl.h ceph-15.2.15-arm32_fix_tests/src/test/librados_test_stub/TestIoCtxImpl.h
--- ceph-15.2.15/src/test/librados_test_stub/TestIoCtxImpl.h 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix_tests/src/test/librados_test_stub/TestIoCtxImpl.h 2023-01-29 19:37:45.275166620 +1030
diff -uNr ceph-15.2.17/src/test/librados_test_stub/TestIoCtxImpl.h ceph-15.2.17-arm32_fix_tests/src/test/librados_test_stub/TestIoCtxImpl.h
--- ceph-15.2.17/src/test/librados_test_stub/TestIoCtxImpl.h 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-arm32_fix_tests/src/test/librados_test_stub/TestIoCtxImpl.h 2023-02-09 16:51:19.876567322 +1030
@@ -197,6 +197,9 @@
};
......@@ -11,9 +11,9 @@ diff -uNr ceph-15.2.15/src/test/librados_test_stub/TestIoCtxImpl.h ceph-15.2.15-
int64_t m_pool_id = 0;
std::string m_pool_name;
std::string m_namespace_name;
diff -uNr ceph-15.2.15/src/test/librbd/CMakeLists.txt ceph-15.2.15-arm32_fix_tests/src/test/librbd/CMakeLists.txt
--- ceph-15.2.15/src/test/librbd/CMakeLists.txt 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix_tests/src/test/librbd/CMakeLists.txt 2023-01-29 19:37:45.275166620 +1030
diff -uNr ceph-15.2.17/src/test/librbd/CMakeLists.txt ceph-15.2.17-arm32_fix_tests/src/test/librbd/CMakeLists.txt
--- ceph-15.2.17/src/test/librbd/CMakeLists.txt 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-arm32_fix_tests/src/test/librbd/CMakeLists.txt 2023-02-09 16:51:19.876567322 +1030
@@ -15,6 +15,10 @@
test_DeepCopy.cc
test_Groups.cc
......@@ -25,9 +25,9 @@ diff -uNr ceph-15.2.15/src/test/librbd/CMakeLists.txt ceph-15.2.15-arm32_fix_tes
test_MirroringWatcher.cc
test_ObjectMap.cc
test_Operations.cc
diff -uNr ceph-15.2.15/src/test/librbd/test_DeepCopy.cc ceph-15.2.15-arm32_fix_tests/src/test/librbd/test_DeepCopy.cc
--- ceph-15.2.15/src/test/librbd/test_DeepCopy.cc 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix_tests/src/test/librbd/test_DeepCopy.cc 2023-01-29 19:37:45.275166620 +1030
diff -uNr ceph-15.2.17/src/test/librbd/test_DeepCopy.cc ceph-15.2.17-arm32_fix_tests/src/test/librbd/test_DeepCopy.cc
--- ceph-15.2.17/src/test/librbd/test_DeepCopy.cc 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-arm32_fix_tests/src/test/librbd/test_DeepCopy.cc 2023-02-09 16:51:19.877567325 +1030
@@ -362,14 +362,14 @@
size = initial_size = m_src_ictx->get_image_size(CEPH_NOSNAP);
}
......@@ -45,9 +45,9 @@ diff -uNr ceph-15.2.15/src/test/librbd/test_DeepCopy.cc ceph-15.2.15-arm32_fix_t
c = getenv("TEST_RBD_DEEPCOPY_STRESS_NWRITES");
if (c != NULL) {
std::stringstream ss(c);
diff -uNr ceph-15.2.15/src/test/librbd/test_main.cc ceph-15.2.15-arm32_fix_tests/src/test/librbd/test_main.cc
--- ceph-15.2.15/src/test/librbd/test_main.cc 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix_tests/src/test/librbd/test_main.cc 2023-01-29 19:37:45.275166620 +1030
diff -uNr ceph-15.2.17/src/test/librbd/test_main.cc ceph-15.2.17-arm32_fix_tests/src/test/librbd/test_main.cc
--- ceph-15.2.17/src/test/librbd/test_main.cc 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-arm32_fix_tests/src/test/librbd/test_main.cc 2023-02-09 16:51:19.877567325 +1030
@@ -18,6 +18,7 @@
extern void register_test_journal_entries();
extern void register_test_journal_replay();
......@@ -64,9 +64,9 @@ diff -uNr ceph-15.2.15/src/test/librbd/test_main.cc ceph-15.2.15-arm32_fix_tests
register_test_mirroring();
register_test_mirroring_watcher();
register_test_object_map();
diff -uNr ceph-15.2.15/src/test/librbd/test_MigrationAbort.cc ceph-15.2.15-arm32_fix_tests/src/test/librbd/test_MigrationAbort.cc
--- ceph-15.2.15/src/test/librbd/test_MigrationAbort.cc 1970-01-01 09:30:00.000000000 +0930
+++ ceph-15.2.15-arm32_fix_tests/src/test/librbd/test_MigrationAbort.cc 2023-01-29 19:37:45.276166623 +1030
diff -uNr ceph-15.2.17/src/test/librbd/test_MigrationAbort.cc ceph-15.2.17-arm32_fix_tests/src/test/librbd/test_MigrationAbort.cc
--- ceph-15.2.17/src/test/librbd/test_MigrationAbort.cc 1970-01-01 09:30:00.000000000 +0930
+++ ceph-15.2.17-arm32_fix_tests/src/test/librbd/test_MigrationAbort.cc 2023-02-09 16:51:19.877567325 +1030
@@ -0,0 +1,472 @@
+// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
+// vim: ts=8 sw=2 smarttab
......@@ -540,9 +540,9 @@ diff -uNr ceph-15.2.15/src/test/librbd/test_MigrationAbort.cc ceph-15.2.15-arm32
+
+ migration_abort(m_ioctx, m_image_name);
+}
diff -uNr ceph-15.2.15/src/test/librbd/test_Migration.cc ceph-15.2.15-arm32_fix_tests/src/test/librbd/test_Migration.cc
--- ceph-15.2.15/src/test/librbd/test_Migration.cc 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix_tests/src/test/librbd/test_Migration.cc 2023-01-29 19:37:45.276166623 +1030
diff -uNr ceph-15.2.17/src/test/librbd/test_Migration.cc ceph-15.2.17-arm32_fix_tests/src/test/librbd/test_Migration.cc
--- ceph-15.2.17/src/test/librbd/test_Migration.cc 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-arm32_fix_tests/src/test/librbd/test_Migration.cc 2023-02-09 16:51:19.877567325 +1030
@@ -427,94 +427,6 @@
close_image(child_ictx);
}
......@@ -1041,9 +1041,9 @@ diff -uNr ceph-15.2.15/src/test/librbd/test_Migration.cc ceph-15.2.15-arm32_fix_
-{
- test_stress2(true);
-}
diff -uNr ceph-15.2.15/src/test/librbd/test_MigrationClone.cc ceph-15.2.15-arm32_fix_tests/src/test/librbd/test_MigrationClone.cc
--- ceph-15.2.15/src/test/librbd/test_MigrationClone.cc 1970-01-01 09:30:00.000000000 +0930
+++ ceph-15.2.15-arm32_fix_tests/src/test/librbd/test_MigrationClone.cc 2023-01-29 19:37:45.276166623 +1030
diff -uNr ceph-15.2.17/src/test/librbd/test_MigrationClone.cc ceph-15.2.17-arm32_fix_tests/src/test/librbd/test_MigrationClone.cc
--- ceph-15.2.17/src/test/librbd/test_MigrationClone.cc 1970-01-01 09:30:00.000000000 +0930
+++ ceph-15.2.17-arm32_fix_tests/src/test/librbd/test_MigrationClone.cc 2023-02-09 16:51:19.877567325 +1030
@@ -0,0 +1,635 @@
+// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
+// vim: ts=8 sw=2 smarttab
......@@ -1680,9 +1680,9 @@ diff -uNr ceph-15.2.15/src/test/librbd/test_MigrationClone.cc ceph-15.2.15-arm32
+ migration_abort(m_ioctx, m_image_name);
+ });
+}
diff -uNr ceph-15.2.15/src/test/librbd/test_MigrationSnaps.cc ceph-15.2.15-arm32_fix_tests/src/test/librbd/test_MigrationSnaps.cc
--- ceph-15.2.15/src/test/librbd/test_MigrationSnaps.cc 1970-01-01 09:30:00.000000000 +0930
+++ ceph-15.2.15-arm32_fix_tests/src/test/librbd/test_MigrationSnaps.cc 2023-01-29 19:37:45.276166623 +1030
diff -uNr ceph-15.2.17/src/test/librbd/test_MigrationSnaps.cc ceph-15.2.17-arm32_fix_tests/src/test/librbd/test_MigrationSnaps.cc
--- ceph-15.2.17/src/test/librbd/test_MigrationSnaps.cc 1970-01-01 09:30:00.000000000 +0930
+++ ceph-15.2.17-arm32_fix_tests/src/test/librbd/test_MigrationSnaps.cc 2023-02-09 16:51:19.878567328 +1030
@@ -0,0 +1,584 @@
+// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
+// vim: ts=8 sw=2 smarttab
......@@ -2268,9 +2268,9 @@ diff -uNr ceph-15.2.15/src/test/librbd/test_MigrationSnaps.cc ceph-15.2.15-arm32
+ migration_status(RBD_IMAGE_MIGRATION_STATE_EXECUTED);
+ migration_commit(m_ioctx, m_image_name);
+}
diff -uNr ceph-15.2.15/src/test/librbd/test_MigrationStress.cc ceph-15.2.15-arm32_fix_tests/src/test/librbd/test_MigrationStress.cc
--- ceph-15.2.15/src/test/librbd/test_MigrationStress.cc 1970-01-01 09:30:00.000000000 +0930
+++ ceph-15.2.15-arm32_fix_tests/src/test/librbd/test_MigrationStress.cc 2023-01-29 19:37:45.277166625 +1030
diff -uNr ceph-15.2.17/src/test/librbd/test_MigrationStress.cc ceph-15.2.17-arm32_fix_tests/src/test/librbd/test_MigrationStress.cc
--- ceph-15.2.17/src/test/librbd/test_MigrationStress.cc 1970-01-01 09:30:00.000000000 +0930
+++ ceph-15.2.17-arm32_fix_tests/src/test/librbd/test_MigrationStress.cc 2023-02-09 16:51:19.878567328 +1030
@@ -0,0 +1,456 @@
+// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
+// vim: ts=8 sw=2 smarttab
......@@ -2728,9 +2728,9 @@ diff -uNr ceph-15.2.15/src/test/librbd/test_MigrationStress.cc ceph-15.2.15-arm3
+{
+ test_stress2(true);
+}
diff -uNr ceph-15.2.15/src/test/objectstore/Allocator_test.cc ceph-15.2.15-arm32_fix_tests/src/test/objectstore/Allocator_test.cc
--- ceph-15.2.15/src/test/objectstore/Allocator_test.cc 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix_tests/src/test/objectstore/Allocator_test.cc 2023-01-29 19:37:45.277166625 +1030
diff -uNr ceph-15.2.17/src/test/objectstore/Allocator_test.cc ceph-15.2.17-arm32_fix_tests/src/test/objectstore/Allocator_test.cc
--- ceph-15.2.17/src/test/objectstore/Allocator_test.cc 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-arm32_fix_tests/src/test/objectstore/Allocator_test.cc 2023-02-09 16:51:19.878567328 +1030
@@ -543,7 +543,7 @@
init_alloc(size, block);
......@@ -2740,9 +2740,9 @@ diff -uNr ceph-15.2.15/src/test/objectstore/Allocator_test.cc ceph-15.2.15-arm32
alloc->init_add_free(i * 0x100000, 0x100000);
}
diff -uNr ceph-15.2.15/src/test/objectstore/test_bdev.cc ceph-15.2.15-arm32_fix_tests/src/test/objectstore/test_bdev.cc
--- ceph-15.2.15/src/test/objectstore/test_bdev.cc 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix_tests/src/test/objectstore/test_bdev.cc 2023-01-29 19:37:45.277166625 +1030
diff -uNr ceph-15.2.17/src/test/objectstore/test_bdev.cc ceph-15.2.17-arm32_fix_tests/src/test/objectstore/test_bdev.cc
--- ceph-15.2.17/src/test/objectstore/test_bdev.cc 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-arm32_fix_tests/src/test/objectstore/test_bdev.cc 2023-02-09 16:51:19.878567328 +1030
@@ -54,8 +54,8 @@
BlockDevice::create(g_ceph_context, bdev.path, NULL, NULL,
[](void* handle, void* aio) {}, NULL));
......@@ -2754,9 +2754,9 @@ diff -uNr ceph-15.2.15/src/test/objectstore/test_bdev.cc ceph-15.2.15-arm32_fix_
string s(1048576, 'a' + (i % 28));
bl.append(s);
}
diff -uNr ceph-15.2.15/src/test/objectstore/test_bluefs.cc ceph-15.2.15-arm32_fix_tests/src/test/objectstore/test_bluefs.cc
--- ceph-15.2.15/src/test/objectstore/test_bluefs.cc 2023-01-29 19:40:48.944658003 +1030
+++ ceph-15.2.15-arm32_fix_tests/src/test/objectstore/test_bluefs.cc 2023-01-29 19:39:27.042438884 +1030
diff -uNr ceph-15.2.17/src/test/objectstore/test_bluefs.cc ceph-15.2.17-arm32_fix_tests/src/test/objectstore/test_bluefs.cc
--- ceph-15.2.17/src/test/objectstore/test_bluefs.cc 2023-02-09 16:50:56.499496361 +1030
+++ ceph-15.2.17-arm32_fix_tests/src/test/objectstore/test_bluefs.cc 2023-02-09 16:51:19.878567328 +1030
@@ -237,8 +237,8 @@
}
......@@ -2814,9 +2814,9 @@ diff -uNr ceph-15.2.15/src/test/objectstore/test_bluefs.cc ceph-15.2.15-arm32_fi
TempBdev bdev{ size_full };
BlueFS fs(g_ceph_context);
diff -uNr ceph-15.2.15/src/test/rgw/CMakeLists.txt ceph-15.2.15-arm32_fix_tests/src/test/rgw/CMakeLists.txt
--- ceph-15.2.15/src/test/rgw/CMakeLists.txt 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix_tests/src/test/rgw/CMakeLists.txt 2023-01-29 19:37:45.277166625 +1030
diff -uNr ceph-15.2.17/src/test/rgw/CMakeLists.txt ceph-15.2.17-arm32_fix_tests/src/test/rgw/CMakeLists.txt
--- ceph-15.2.17/src/test/rgw/CMakeLists.txt 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-arm32_fix_tests/src/test/rgw/CMakeLists.txt 2023-02-09 16:51:19.878567328 +1030
@@ -27,6 +27,7 @@
test_rgw_compression.cc
$<TARGET_OBJECTS:unit-main>)
......@@ -2825,9 +2825,9 @@ diff -uNr ceph-15.2.15/src/test/rgw/CMakeLists.txt ceph-15.2.15-arm32_fix_tests/
target_link_libraries(unittest_rgw_compression ${rgw_libs})
# unitttest_http_manager
diff -uNr ceph-15.2.15/src/test/test_mempool.cc ceph-15.2.15-arm32_fix_tests/src/test/test_mempool.cc
--- ceph-15.2.15/src/test/test_mempool.cc 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-arm32_fix_tests/src/test/test_mempool.cc 2023-01-29 19:37:45.277166625 +1030
diff -uNr ceph-15.2.17/src/test/test_mempool.cc ceph-15.2.17-arm32_fix_tests/src/test/test_mempool.cc
--- ceph-15.2.17/src/test/test_mempool.cc 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-arm32_fix_tests/src/test/test_mempool.cc 2023-02-09 16:51:19.878567328 +1030
@@ -405,7 +405,7 @@
TEST(mempool, check_shard_select)
......
diff -uNr ceph-15.2.15/src/erasure-code/shec/ErasureCodeShec.cc ceph-15.2.15-fix_ErasureCodeShec/src/erasure-code/shec/ErasureCodeShec.cc
--- ceph-15.2.15/src/erasure-code/shec/ErasureCodeShec.cc 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-fix_ErasureCodeShec/src/erasure-code/shec/ErasureCodeShec.cc 2022-01-19 16:17:29.215308480 +1030
diff -uNr ceph-15.2.17/src/erasure-code/shec/ErasureCodeShec.cc ceph-15.2.17-fix_ErasureCodeShec/src/erasure-code/shec/ErasureCodeShec.cc
--- ceph-15.2.17/src/erasure-code/shec/ErasureCodeShec.cc 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-fix_ErasureCodeShec/src/erasure-code/shec/ErasureCodeShec.cc 2023-02-09 13:56:36.584666287 +1030
@@ -179,6 +179,10 @@
if (!decoded || !decoded->empty()){
return -EINVAL;
......@@ -12,9 +12,9 @@ diff -uNr ceph-15.2.15/src/erasure-code/shec/ErasureCodeShec.cc ceph-15.2.15-fix
have.reserve(chunks.size());
for (map<int, bufferlist>::const_iterator i = chunks.begin();
diff -uNr ceph-15.2.15/src/test/erasure-code/TestErasureCodeShec_arguments.cc ceph-15.2.15-fix_ErasureCodeShec/src/test/erasure-code/TestErasureCodeShec_arguments.cc
--- ceph-15.2.15/src/test/erasure-code/TestErasureCodeShec_arguments.cc 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-fix_ErasureCodeShec/src/test/erasure-code/TestErasureCodeShec_arguments.cc 2022-01-19 16:17:29.215308480 +1030
diff -uNr ceph-15.2.17/src/test/erasure-code/TestErasureCodeShec_arguments.cc ceph-15.2.17-fix_ErasureCodeShec/src/test/erasure-code/TestErasureCodeShec_arguments.cc
--- ceph-15.2.17/src/test/erasure-code/TestErasureCodeShec_arguments.cc 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-fix_ErasureCodeShec/src/test/erasure-code/TestErasureCodeShec_arguments.cc 2023-02-09 13:56:36.584666287 +1030
@@ -323,7 +323,6 @@
EXPECT_EQ(-EIO, result);
EXPECT_EQ(0u, minimum_chunks.size());
......
diff -uNr ceph-15.2.15/cmake/modules/Distutils.cmake ceph-15.2.15-fix_ceph-volume_systemd_unit/cmake/modules/Distutils.cmake
--- ceph-15.2.15/cmake/modules/Distutils.cmake 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-fix_ceph-volume_systemd_unit/cmake/modules/Distutils.cmake 2022-01-19 16:32:53.117200509 +1030
diff -uNr ceph-15.2.17/cmake/modules/Distutils.cmake ceph-15.2.17-fix_ceph-volume_systemd_unit/cmake/modules/Distutils.cmake
--- ceph-15.2.17/cmake/modules/Distutils.cmake 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-fix_ceph-volume_systemd_unit/cmake/modules/Distutils.cmake 2023-02-09 14:00:05.956304924 +1030
@@ -25,9 +25,9 @@
list(APPEND options
--root=\$ENV{DESTDIR}
......
diff -uNr ceph-15.2.15/src/test/test_arch.cc ceph-15.2.15-fix_cpu_detection/src/test/test_arch.cc
--- ceph-15.2.15/src/test/test_arch.cc 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-fix_cpu_detection/src/test/test_arch.cc 2022-01-19 16:38:25.602238282 +1030
diff -uNr ceph-15.2.17/src/test/test_arch.cc ceph-15.2.17-fix_cpu_detection/src/test/test_arch.cc
--- ceph-15.2.17/src/test/test_arch.cc 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-fix_cpu_detection/src/test/test_arch.cc 2023-02-09 14:02:28.419739481 +1030
@@ -69,7 +69,7 @@
expected = strstr(flags, " sse4_1 ") ? 1 : 0;
EXPECT_EQ(expected, ceph_arch_intel_sse41);
......
diff -uNr ceph-15.2.15/src/librbd/image/OpenRequest.cc ceph-15.2.15-fix_librbd_duplicate/src/librbd/image/OpenRequest.cc
--- ceph-15.2.15/src/librbd/image/OpenRequest.cc 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-fix_librbd_duplicate/src/librbd/image/OpenRequest.cc 2022-01-19 16:42:03.300887319 +1030
diff -uNr ceph-15.2.17/src/librbd/image/OpenRequest.cc ceph-15.2.17-fix_librbd_duplicate/src/librbd/image/OpenRequest.cc
--- ceph-15.2.17/src/librbd/image/OpenRequest.cc 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-fix_librbd_duplicate/src/librbd/image/OpenRequest.cc 2023-02-09 15:00:51.932398445 +1030
@@ -10,7 +10,7 @@
#include "librbd/Utils.h"
#include "librbd/cache/ObjectCacherObjectDispatch.h"
......
diff -uNr ceph-15.2.15/src/tools/setup-virtualenv.sh ceph-15.2.15-fix_pip/src/tools/setup-virtualenv.sh
--- ceph-15.2.15/src/tools/setup-virtualenv.sh 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-fix_pip/src/tools/setup-virtualenv.sh 2023-02-06 01:11:48.050823469 +1030
diff -uNr ceph-15.2.17/src/tools/setup-virtualenv.sh ceph-15.2.17-fix_pip/src/tools/setup-virtualenv.sh
--- ceph-15.2.17/src/tools/setup-virtualenv.sh 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-fix_pip/src/tools/setup-virtualenv.sh 2023-02-09 16:30:01.085679996 +1030
@@ -66,17 +66,10 @@
DISABLE_PIP_VERSION_CHECK=
fi
......
diff -uNr --no-dereference ceph-15.2.15/src/test/cli/ceph-conf/env-vs-args.t ceph-15.2.15-fix_tests/src/test/cli/ceph-conf/env-vs-args.t
--- ceph-15.2.15/src/test/cli/ceph-conf/env-vs-args.t 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-fix_tests/src/test/cli/ceph-conf/env-vs-args.t 2023-02-03 23:15:37.499879540 +1030
diff -uNr ceph-15.2.17/src/test/cli/ceph-conf/env-vs-args.t ceph-15.2.17-fix_tests/src/test/cli/ceph-conf/env-vs-args.t
--- ceph-15.2.17/src/test/cli/ceph-conf/env-vs-args.t 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-fix_tests/src/test/cli/ceph-conf/env-vs-args.t 2023-02-09 16:39:02.455326846 +1030
@@ -2,9 +2,9 @@
$ env CEPH_CONF=from-env ceph-conf -s foo bar
did not load config file, using default settings.
......@@ -13,9 +13,9 @@ diff -uNr --no-dereference ceph-15.2.15/src/test/cli/ceph-conf/env-vs-args.t cep
[1]
# command-line arguments should override environment
diff -uNr --no-dereference ceph-15.2.15/src/test/CMakeLists.txt ceph-15.2.15-fix_tests/src/test/CMakeLists.txt
--- ceph-15.2.15/src/test/CMakeLists.txt 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-fix_tests/src/test/CMakeLists.txt 2023-02-03 23:15:37.499879540 +1030
diff -uNr ceph-15.2.17/src/test/CMakeLists.txt ceph-15.2.17-fix_tests/src/test/CMakeLists.txt
--- ceph-15.2.17/src/test/CMakeLists.txt 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-fix_tests/src/test/CMakeLists.txt 2023-02-09 16:39:02.455326846 +1030
@@ -512,11 +512,17 @@
# Run rbd-unit-tests separate so they an run in parallel
# For values see: src/include/rbd/features.h
......@@ -42,9 +42,9 @@ diff -uNr --no-dereference ceph-15.2.15/src/test/CMakeLists.txt ceph-15.2.15-fix
find_program(PROMTOOL_EXECUTABLE promtool)
if(PROMTOOL_EXECUTABLE)
diff -uNr --no-dereference ceph-15.2.15/src/test/common/Throttle.cc ceph-15.2.15-fix_tests/src/test/common/Throttle.cc
--- ceph-15.2.15/src/test/common/Throttle.cc 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-fix_tests/src/test/common/Throttle.cc 2023-02-03 23:15:37.500879543 +1030
diff -uNr ceph-15.2.17/src/test/common/Throttle.cc ceph-15.2.17-fix_tests/src/test/common/Throttle.cc
--- ceph-15.2.17/src/test/common/Throttle.cc 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-fix_tests/src/test/common/Throttle.cc 2023-02-09 16:39:02.455326846 +1030
@@ -332,7 +332,7 @@
3,
6);
......@@ -54,18 +54,18 @@ diff -uNr --no-dereference ceph-15.2.15/src/test/common/Throttle.cc ceph-15.2.15
ASSERT_LT(results.second.count(), 0.0002);
ASSERT_GT(results.second.count(), 0.00005);
}
diff -uNr --no-dereference ceph-15.2.15/src/test/encoding/CMakeLists.txt ceph-15.2.15-fix_tests/src/test/encoding/CMakeLists.txt
--- ceph-15.2.15/src/test/encoding/CMakeLists.txt 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-fix_tests/src/test/encoding/CMakeLists.txt 2023-02-03 23:15:37.500879543 +1030
diff -uNr ceph-15.2.17/src/test/encoding/CMakeLists.txt ceph-15.2.17-fix_tests/src/test/encoding/CMakeLists.txt
--- ceph-15.2.17/src/test/encoding/CMakeLists.txt 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-fix_tests/src/test/encoding/CMakeLists.txt 2023-02-09 16:39:02.456326849 +1030
@@ -1,3 +1,5 @@
# scripts
add_ceph_test(check-generated.sh ${CMAKE_CURRENT_SOURCE_DIR}/check-generated.sh)
+set_tests_properties(check-generated.sh PROPERTIES TIMEOUT 18000)
add_ceph_test(readable.sh ${CMAKE_CURRENT_SOURCE_DIR}/readable.sh)
+set_tests_properties(readable.sh PROPERTIES TIMEOUT 36000)
diff -uNr --no-dereference ceph-15.2.15/src/test/mgr/CMakeLists.txt ceph-15.2.15-fix_tests/src/test/mgr/CMakeLists.txt
--- ceph-15.2.15/src/test/mgr/CMakeLists.txt 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-fix_tests/src/test/mgr/CMakeLists.txt 2023-02-03 23:15:37.500879543 +1030
diff -uNr ceph-15.2.17/src/test/mgr/CMakeLists.txt ceph-15.2.17-fix_tests/src/test/mgr/CMakeLists.txt
--- ceph-15.2.17/src/test/mgr/CMakeLists.txt 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-fix_tests/src/test/mgr/CMakeLists.txt 2023-02-09 16:39:02.456326849 +1030
@@ -9,6 +9,7 @@
if(WITH_MGR_DASHBOARD_FRONTEND)
if(NOT CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64|AARCH64|arm|ARM")
......@@ -74,9 +74,9 @@ diff -uNr --no-dereference ceph-15.2.15/src/test/mgr/CMakeLists.txt ceph-15.2.15
endif(NOT CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64|AARCH64|arm|ARM")
add_ceph_test(mgr-dashboard-smoke.sh ${CMAKE_CURRENT_SOURCE_DIR}/mgr-dashboard-smoke.sh)
diff -uNr --no-dereference ceph-15.2.15/src/test/objectstore/CMakeLists.txt ceph-15.2.15-fix_tests/src/test/objectstore/CMakeLists.txt
--- ceph-15.2.15/src/test/objectstore/CMakeLists.txt 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-fix_tests/src/test/objectstore/CMakeLists.txt 2023-02-03 23:15:37.500879543 +1030
diff -uNr ceph-15.2.17/src/test/objectstore/CMakeLists.txt ceph-15.2.17-fix_tests/src/test/objectstore/CMakeLists.txt
--- ceph-15.2.17/src/test/objectstore/CMakeLists.txt 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-fix_tests/src/test/objectstore/CMakeLists.txt 2023-02-09 16:39:02.456326849 +1030
@@ -131,6 +131,7 @@
test_bluefs.cc
)
......@@ -93,9 +93,9 @@ diff -uNr --no-dereference ceph-15.2.15/src/test/objectstore/CMakeLists.txt ceph
target_link_libraries(unittest_bdev os global)
endif(WITH_BLUESTORE)
diff -uNr --no-dereference ceph-15.2.15/src/test/objectstore/test_bluefs.cc ceph-15.2.15-fix_tests/src/test/objectstore/test_bluefs.cc
--- ceph-15.2.15/src/test/objectstore/test_bluefs.cc 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-fix_tests/src/test/objectstore/test_bluefs.cc 2023-02-03 23:15:37.500879543 +1030
diff -uNr ceph-15.2.17/src/test/objectstore/test_bluefs.cc ceph-15.2.17-fix_tests/src/test/objectstore/test_bluefs.cc
--- ceph-15.2.17/src/test/objectstore/test_bluefs.cc 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-fix_tests/src/test/objectstore/test_bluefs.cc 2023-02-09 16:39:02.456326849 +1030
@@ -263,13 +263,13 @@
for (unsigned i = 0; i < 3*1024*1048576ull / sizeof(buf); ++i) {
h->append(buf, sizeof(buf));
......@@ -112,9 +112,9 @@ diff -uNr --no-dereference ceph-15.2.15/src/test/objectstore/test_bluefs.cc ceph
fs.close_writer(h);
}
{
diff -uNr --no-dereference ceph-15.2.15/src/test/osd/CMakeLists.txt ceph-15.2.15-fix_tests/src/test/osd/CMakeLists.txt
--- ceph-15.2.15/src/test/osd/CMakeLists.txt 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-fix_tests/src/test/osd/CMakeLists.txt 2023-02-03 23:15:37.500879543 +1030
diff -uNr ceph-15.2.17/src/test/osd/CMakeLists.txt ceph-15.2.17-fix_tests/src/test/osd/CMakeLists.txt
--- ceph-15.2.17/src/test/osd/CMakeLists.txt 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-fix_tests/src/test/osd/CMakeLists.txt 2023-02-09 16:39:02.456326849 +1030
@@ -35,6 +35,7 @@
# scripts
......@@ -123,9 +123,9 @@ diff -uNr --no-dereference ceph-15.2.15/src/test/osd/CMakeLists.txt ceph-15.2.15
# unittest_osdmap
add_executable(unittest_osdmap
diff -uNr --no-dereference ceph-15.2.15/src/test/osd/TestOSDScrub.cc ceph-15.2.15-fix_tests/src/test/osd/TestOSDScrub.cc
--- ceph-15.2.15/src/test/osd/TestOSDScrub.cc 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-fix_tests/src/test/osd/TestOSDScrub.cc 2023-02-03 23:15:37.501879546 +1030
diff -uNr ceph-15.2.17/src/test/osd/TestOSDScrub.cc ceph-15.2.17-fix_tests/src/test/osd/TestOSDScrub.cc
--- ceph-15.2.17/src/test/osd/TestOSDScrub.cc 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-fix_tests/src/test/osd/TestOSDScrub.cc 2023-02-09 16:39:02.456326849 +1030
@@ -70,7 +70,7 @@
g_ceph_context->_conf.set_val("osd_scrub_begin_hour", "0");
g_ceph_context->_conf.set_val("osd_scrub_end_hour", "24");
......@@ -135,9 +135,9 @@ diff -uNr --no-dereference ceph-15.2.15/src/test/osd/TestOSDScrub.cc ceph-15.2.1
tm.tm_isdst = -1;
strptime("2015-01-16 12:05:13", "%Y-%m-%d %H:%M:%S", &tm);
utime_t now = utime_t(mktime(&tm), 0);
diff -uNr --no-dereference ceph-15.2.15/src/test/smoke.sh ceph-15.2.15-fix_tests/src/test/smoke.sh
--- ceph-15.2.15/src/test/smoke.sh 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-fix_tests/src/test/smoke.sh 2023-02-03 23:15:37.501879546 +1030
diff -uNr ceph-15.2.17/src/test/smoke.sh ceph-15.2.17-fix_tests/src/test/smoke.sh
--- ceph-15.2.17/src/test/smoke.sh 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-fix_tests/src/test/smoke.sh 2023-02-09 16:39:02.456326849 +1030
@@ -53,7 +53,7 @@
ceph osd out 0
wait_for_clean
......@@ -147,9 +147,9 @@ diff -uNr --no-dereference ceph-15.2.15/src/test/smoke.sh ceph-15.2.15-fix_tests
wait_for_clean
ceph osd in 0
diff -uNr --no-dereference ceph-15.2.15/src/test/test_ipaddr.cc ceph-15.2.15-fix_tests/src/test/test_ipaddr.cc
--- ceph-15.2.15/src/test/test_ipaddr.cc 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-fix_tests/src/test/test_ipaddr.cc 2023-02-03 23:15:37.501879546 +1030
diff -uNr ceph-15.2.17/src/test/test_ipaddr.cc ceph-15.2.17-fix_tests/src/test/test_ipaddr.cc
--- ceph-15.2.17/src/test/test_ipaddr.cc 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-fix_tests/src/test/test_ipaddr.cc 2023-02-09 16:39:02.457326852 +1030
@@ -186,6 +186,7 @@
struct sockaddr_in a_three;
......
diff -uNr ceph-15.2.15/src/msg/async/frames_v2.h ceph-15.2.15-fix_v2_frame/src/msg/async/frames_v2.h
--- ceph-15.2.15/src/msg/async/frames_v2.h 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-fix_v2_frame/src/msg/async/frames_v2.h 2022-01-19 16:50:18.478348557 +1030
diff -uNr ceph-15.2.17/src/msg/async/frames_v2.h ceph-15.2.17-fix_v2_frame/src/msg/async/frames_v2.h
--- ceph-15.2.17/src/msg/async/frames_v2.h 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-fix_v2_frame/src/msg/async/frames_v2.h 2023-02-09 16:54:21.975120094 +1030
@@ -63,7 +63,7 @@
// We need them because of the rx_buffers zero-copy optimization.
static constexpr __u16 PAGE_SIZE_ALIGNMENT = 4096;
......
diff -uNr ceph-15.2.15/do_cmake.sh ceph-15.2.15-no_git/do_cmake.sh
--- ceph-15.2.15/do_cmake.sh 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-no_git/do_cmake.sh 2022-01-19 16:52:23.781718316 +1030
diff -uNr ceph-15.2.17/do_cmake.sh ceph-15.2.17-no_git/do_cmake.sh
--- ceph-15.2.17/do_cmake.sh 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-no_git/do_cmake.sh 2023-02-09 16:58:21.280846524 +1030
@@ -1,7 +1,9 @@
#!/usr/bin/env bash
set -ex
......
diff -uNr ceph-15.2.15/src/test/CMakeLists.txt ceph-15.2.15-skip_promtool_tests/src/test/CMakeLists.txt
--- ceph-15.2.15/src/test/CMakeLists.txt 2021-10-21 00:49:57.000000000 +1030
+++ ceph-15.2.15-skip_promtool_tests/src/test/CMakeLists.txt 2022-02-07 20:05:41.506213691 +1030
diff -uNr ceph-15.2.17/src/test/CMakeLists.txt ceph-15.2.17-skip_promtool_tests/src/test/CMakeLists.txt
--- ceph-15.2.17/src/test/CMakeLists.txt 2022-08-10 02:37:01.000000000 +0930
+++ ceph-15.2.17-skip_promtool_tests/src/test/CMakeLists.txt 2023-02-09 17:00:53.027307163 +1030
@@ -531,24 +531,6 @@
add_ceph_test(smoke.sh ${CMAKE_CURRENT_SOURCE_DIR}/smoke.sh)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment