Skip to content

Commit 392f869

Browse files
authored
Remove ram requirements in order to speed up checks (#7621)
1 parent 4efd471 commit 392f869

File tree

118 files changed

+426
-288
lines changed

Some content is hidden

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

118 files changed

+426
-288
lines changed

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ FORK_SUBTESTS(MODULO)
44

55
SPLIT_FACTOR(20)
66

7-
REQUIREMENTS(
8-
ram:32
9-
)
7+
IF (SANITIZER_TYPE)
8+
REQUIREMENTS(
9+
ram:32
10+
)
11+
ENDIF()
1012

1113
IF (SANITIZER_TYPE == "thread" OR WITH_VALGRIND)
1214
TIMEOUT(3600)

ydb/core/blobstorage/dsproxy/ut_fat/ya.make

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ FORK_SUBTESTS()
44

55
SPLIT_FACTOR(30)
66

7+
IF (SANITIZER_TYPE)
8+
REQUIREMENTS(ram:10)
9+
ENDIF()
10+
711
IF (WITH_VALGRIND)
812
SIZE(LARGE)
913
TAG(ya:fat)
@@ -32,6 +36,4 @@ SRCS(
3236
dsproxy_ut.cpp
3337
)
3438

35-
REQUIREMENTS(ram:10)
36-
3739
END()

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ UNITTEST()
22

33
FORK_SUBTESTS()
44

5+
IF (SANITIZER_TYPE)
6+
REQUIREMENTS(ram:9)
7+
ENDIF()
8+
59
IF (WITH_VALGRIND)
610
TIMEOUT(3600)
711
SIZE(LARGE)
@@ -25,6 +29,4 @@ SRCS(
2529
incrhuge_log_merger_ut.cpp
2630
)
2731

28-
REQUIREMENTS(ram:9)
29-
3032
END()

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ UNITTEST_FOR(ydb/core/blobstorage/nodewarden)
22

33
FORK_SUBTESTS()
44

5+
IF (SANITIZER_TYPE)
6+
REQUIREMENTS(ram:14)
7+
ENDIF()
8+
59
IF (SANITIZER_TYPE == "thread" OR WITH_VALGRIND)
610
TIMEOUT(1200)
711
SIZE(LARGE)
@@ -22,6 +26,4 @@ SRCS(
2226

2327
YQL_LAST_ABI_VERSION()
2428

25-
REQUIREMENTS(ram:14)
26-
2729
END()

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ PEERDIR(
2020
ydb/core/blobstorage/ut_blobstorage/lib
2121
)
2222

23-
REQUIREMENTS(
24-
ram:32
25-
)
23+
IF (SANITIZER_TYPE)
24+
REQUIREMENTS(ram:32)
25+
ENDIF()
2626

2727
END()

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ PEERDIR(
1616
ydb/core/blobstorage/ut_blobstorage/lib
1717
)
1818

19-
REQUIREMENTS(
20-
ram:32
21-
)
19+
IF (SANITIZER_TYPE)
20+
REQUIREMENTS(ram:32)
21+
ENDIF()
2222

2323
END()

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ PEERDIR(
1717
ydb/core/blobstorage/ut_blobstorage/lib
1818
)
1919

20-
REQUIREMENTS(
21-
ram:32
22-
)
20+
IF (SANITIZER_TYPE)
21+
REQUIREMENTS(ram:32)
22+
ENDIF()
2323

2424
END()

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ PEERDIR(
1616
ydb/core/blobstorage/ut_blobstorage/lib
1717
)
1818

19-
REQUIREMENTS(
20-
ram:32
21-
)
19+
IF (SANITIZER_TYPE)
20+
REQUIREMENTS(ram:32)
21+
ENDIF()
2222

2323
END()

ydb/core/blobstorage/ut_blobstorage/ya.make

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ UNITTEST()
22

33
FORK_SUBTESTS()
44

5+
IF (SANITIZER_TYPE)
6+
REQUIREMENTS(ram:32)
7+
ENDIF()
8+
59
IF (SANITIZER_TYPE OR WITH_VALGRIND)
610
TIMEOUT(3600)
711
SIZE(LARGE)
@@ -52,8 +56,6 @@ PEERDIR(
5256
ydb/core/blobstorage/vdisk/scrub
5357
)
5458

55-
REQUIREMENTS(ram:32)
56-
5759
END()
5860

5961
RECURSE_FOR_TESTS(

ydb/core/blobstorage/ut_testshard/ya.make

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ UNITTEST()
33
SIZE(MEDIUM)
44
TIMEOUT(600)
55

6-
REQUIREMENTS(
7-
ram:32
8-
)
6+
IF (SANITIZER_TYPE)
7+
REQUIREMENTS(ram:32)
8+
ENDIF()
99

1010
SRCS(
1111
main.cpp

0 commit comments

Comments
 (0)