Skip to content

Commit f5aca09

Browse files
committed
Fix broken tests
1 parent 106c34d commit f5aca09

File tree

16 files changed

+35
-10
lines changed

16 files changed

+35
-10
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#include <ydb/core/driver_lib/version/version.h>
2+
3+
NKikimrConfig::TCurrentCompatibilityInfo NKikimr::TCompatibilityInfo::MakeCurrent() {
4+
using TCurrentConstructor = NKikimr::TCompatibilityInfo::TProtoConstructor::TCurrentCompatibilityInfo;
5+
// using TVersionConstructor = NKikimr::TCompatibilityInfo::TProtoConstructor::TVersion;
6+
// using TCompatibilityRuleConstructor = NKikimr::TCompatibilityInfo::TProtoConstructor::TCompatibilityRule;
7+
8+
return TCurrentConstructor{
9+
.Application = "ydb",
10+
}.ToPB();
11+
}

ydb/apps/version/ya.make

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
LIBRARY(version_definition)
2+
3+
SRCS(
4+
version_definition.cpp
5+
)
6+
7+
PEERDIR(
8+
ydb/core/driver_lib/version
9+
)
10+
11+
END()

ydb/apps/ydbd/ya.make

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ IF (ARCH_X86_64)
2828
ENDIF()
2929

3030
PEERDIR(
31+
ydb/apps/version
3132
ydb/core/driver_lib/run
3233
ydb/core/protos
3334
ydb/core/security

ydb/core/actorlib_impl/ut/ya.make

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ ELSE()
1313
ENDIF()
1414

1515
PEERDIR(
16+
ydb/apps/version
1617
ydb/library/actors/core
1718
ydb/library/actors/interconnect
1819
library/cpp/getopt

ydb/core/blobstorage/incrhuge/ut/ya.make

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ ELSE()
1212
ENDIF()
1313

1414
PEERDIR(
15+
ydb/apps/version
1516
ydb/library/actors/protos
1617
ydb/core/blobstorage
1718
ydb/core/blobstorage/incrhuge

ydb/core/blobstorage/ut_blobstorage/lib/ya.make

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ SRCS(
1616
PEERDIR(
1717
library/cpp/digest/md5
1818
library/cpp/testing/unittest
19+
ydb/apps/version
1920
ydb/core/base
2021
ydb/core/blob_depot
2122
ydb/core/blobstorage/backpressure

ydb/core/blobstorage/ut_group/ya.make

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ ELSE()
1616
ENDIF()
1717

1818
PEERDIR(
19+
ydb/apps/version
1920
ydb/library/actors/interconnect/mock
2021
library/cpp/testing/unittest
2122
ydb/core/blobstorage/crypto

ydb/core/blobstorage/ut_mirror3of4/ya.make

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ SIZE(MEDIUM)
99
TIMEOUT(600)
1010

1111
PEERDIR(
12+
ydb/apps/version
1213
ydb/library/actors/interconnect/mock
1314
library/cpp/testing/unittest
1415
ydb/core/blobstorage/backpressure

ydb/core/blobstorage/ut_vdisk/ya.make

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ SRCS(
1818
)
1919

2020
PEERDIR(
21+
ydb/apps/version
2122
ydb/library/actors/protos
2223
library/cpp/codecs
2324
ydb/core/base

ydb/core/blobstorage/ut_vdisk2/ya.make

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ SRCS(
1616
)
1717

1818
PEERDIR(
19+
ydb/apps/version
1920
library/cpp/testing/unittest
2021
ydb/core/blobstorage/backpressure
2122
ydb/core/blobstorage/groupinfo

0 commit comments

Comments
 (0)