aboutsummaryrefslogtreecommitdiffstats
path: root/util/system/ut/ya.make
diff options
context:
space:
mode:
authorDevtools Arcadia <arcadia-devtools@yandex-team.ru>2022-02-07 18:08:42 +0300
committerDevtools Arcadia <arcadia-devtools@mous.vla.yp-c.yandex.net>2022-02-07 18:08:42 +0300
commit1110808a9d39d4b808aef724c861a2e1a38d2a69 (patch)
treee26c9fed0de5d9873cce7e00bc214573dc2195b7 /util/system/ut/ya.make
downloadydb-1110808a9d39d4b808aef724c861a2e1a38d2a69.tar.gz
intermediate changes
ref:cde9a383711a11544ce7e107a78147fb96cc4029
Diffstat (limited to 'util/system/ut/ya.make')
-rw-r--r--util/system/ut/ya.make88
1 files changed, 88 insertions, 0 deletions
diff --git a/util/system/ut/ya.make b/util/system/ut/ya.make
new file mode 100644
index 0000000000..127e7c261e
--- /dev/null
+++ b/util/system/ut/ya.make
@@ -0,0 +1,88 @@
+UNITTEST_FOR(util)
+
+OWNER(g:util)
+SUBSCRIBER(g:util-subscribers)
+
+FORK_TESTS()
+
+FORK_SUBTESTS()
+
+SPLIT_FACTOR(40)
+
+TIMEOUT(300)
+
+SIZE(MEDIUM)
+
+IF (OS_DARWIN)
+ SIZE(LARGE)
+ TAG(ya:fat ya:force_sandbox ya:exotic_platform)
+ TIMEOUT(3600)
+ENDIF()
+
+PEERDIR(
+ library/cpp/testing/benchmark
+)
+
+SRCS(
+ system/align_ut.cpp
+ system/atexit_ut.cpp
+ system/atomic_ut.cpp
+ system/backtrace_ut.cpp
+ system/byteorder_ut.cpp
+ system/compat_ut.cpp
+ system/compiler_ut.cpp
+ system/context_ut.cpp
+ system/condvar_ut.cpp
+ system/cpu_id_ut.cpp
+ system/datetime_ut.cpp
+ system/daemon_ut.cpp
+ system/direct_io_ut.cpp
+ system/env_ut.cpp
+ system/error_ut.cpp
+ system/event_ut.cpp
+ system/execpath_ut.cpp
+ system/file_ut.cpp
+ system/filemap_ut.cpp
+ system/flock_ut.cpp
+ system/fs_ut.cpp
+ system/fstat_ut.cpp
+ system/getpid_ut.cpp
+ system/guard_ut.cpp
+ system/hi_lo_ut.cpp
+ system/hostname_ut.cpp
+ system/info_ut.cpp
+ system/interrupt_signals_ut.cpp
+ system/mem_info_ut.cpp
+ system/mincore_ut.cpp
+ system/mutex_ut.cpp
+ system/nice_ut.cpp
+ system/pipe_ut.cpp
+ system/platform_ut.cpp
+ system/progname_ut.cpp
+ system/rusage_ut.cpp
+ system/rwlock_ut.cpp
+ system/sanitizers_ut.cpp
+ system/shellcommand_ut.cpp
+ system/spinlock_ut.cpp
+ system/src_root_ut.cpp
+ system/src_location_ut.cpp
+ system/shmat_ut.cpp
+ system/tempfile_ut.cpp
+ system/thread_ut.cpp
+ system/tls_ut.cpp
+ system/types_ut.cpp
+ system/type_name_ut.cpp
+ system/user_ut.cpp
+ system/unaligned_mem_ut.cpp
+ system/yassert_ut.cpp
+)
+
+IF (OS_WINDOWS)
+ DEPENDS(
+ util/system/ut/stdin_osfhandle
+ )
+ENDIF()
+
+REQUIREMENTS(ram:12)
+
+END()