Skip to content

Commit 0bf2ed6

Browse files
authored
-DUSE_EAT_MY_DATA for faster checks (#6690)
1 parent ab051d7 commit 0bf2ed6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/actions/test_ya/action.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ runs:
202202
${test_size[@]/#/--test-size=} ${test_type[@]/#/--test-type=}
203203
--stat
204204
--test-threads "${{ inputs.test_threads }}" --link-threads "${{ inputs.link_threads }}"
205+
-DUSE_EAT_MY_DATA
205206
)
206207
207208
case "$BUILD_PRESET" in
@@ -223,19 +224,19 @@ runs:
223224
release-asan)
224225
params+=(
225226
--build "release" --sanitize="address"
226-
-DSKIP_JUNK -DUSE_EAT_MY_DATA -DDEBUGINFO_LINES_ONLY
227+
-DDEBUGINFO_LINES_ONLY
227228
)
228229
;;
229230
release-tsan)
230231
params+=(
231232
--build "release" --sanitize="thread"
232-
-DSKIP_JUNK -DUSE_EAT_MY_DATA -DDEBUGINFO_LINES_ONLY
233+
-DDEBUGINFO_LINES_ONLY
233234
)
234235
;;
235236
release-msan)
236237
params+=(
237238
--build "release" --sanitize="memory"
238-
-DSKIP_JUNK -DUSE_EAT_MY_DATA -DDEBUGINFO_LINES_ONLY
239+
-DDEBUGINFO_LINES_ONLY
239240
)
240241
;;
241242
*)

0 commit comments

Comments
 (0)