diff options
author | yuryalekseev <[email protected]> | 2023-01-09 21:21:23 +0300 |
---|---|---|
committer | yuryalekseev <[email protected]> | 2023-01-09 21:21:23 +0300 |
commit | d4e68a99e3c7f1c1f686fbe4d0cd2c277312f66a (patch) | |
tree | 679f98d0727ee04e49fdb4de6914f40abbeed66c | |
parent | 19d8e98311d82c5955afe02245b27293d574cd64 (diff) |
Update README.md.
-rw-r--r-- | library/cpp/yt/memory/unittests/chunked_memory_pool_output_ut.cpp | 2 | ||||
-rw-r--r-- | library/cpp/yt/memory/unittests/chunked_memory_pool_ut.cpp | 6 | ||||
-rw-r--r-- | ydb/apps/dstool/README.md | 2 |
3 files changed, 7 insertions, 3 deletions
diff --git a/library/cpp/yt/memory/unittests/chunked_memory_pool_output_ut.cpp b/library/cpp/yt/memory/unittests/chunked_memory_pool_output_ut.cpp index 839fe06ce6d..22ee9e379e9 100644 --- a/library/cpp/yt/memory/unittests/chunked_memory_pool_output_ut.cpp +++ b/library/cpp/yt/memory/unittests/chunked_memory_pool_output_ut.cpp @@ -1,4 +1,4 @@ -#include <yt/yt/core/test_framework/framework.h> +#include <library/cpp/testing/gtest/gtest.h> #include <library/cpp/yt/memory/chunked_memory_pool.h> #include <library/cpp/yt/memory/chunked_memory_pool_output.h> diff --git a/library/cpp/yt/memory/unittests/chunked_memory_pool_ut.cpp b/library/cpp/yt/memory/unittests/chunked_memory_pool_ut.cpp index 63562cfb967..55f9f9945af 100644 --- a/library/cpp/yt/memory/unittests/chunked_memory_pool_ut.cpp +++ b/library/cpp/yt/memory/unittests/chunked_memory_pool_ut.cpp @@ -1,10 +1,14 @@ -#include <yt/yt/core/test_framework/framework.h> +#include <util/string/cast.h> + +#include <library/cpp/testing/gtest/gtest.h> #include <library/cpp/yt/memory/chunked_memory_pool.h> namespace NYT { namespace { +using ::ToString; + //////////////////////////////////////////////////////////////////////////////// TEST(TChunkedMemoryPoolTest, Absorb) diff --git a/ydb/apps/dstool/README.md b/ydb/apps/dstool/README.md index 2e481963d5f..9f763039bea 100644 --- a/ydb/apps/dstool/README.md +++ b/ydb/apps/dstool/README.md @@ -21,7 +21,7 @@ user@host:~/github/ydb$ chmod +x ydb/apps/dstool/compile_protos.py user@host:~/github/ydb$ ./ydb/apps/dstool/compile_protos.py --ydb-root ${ydb_root} 2>/dev/null ``` -## Run +## Set up environment and run ```bash user@host:~$ cd ~/github/ydb |