From ead05e5382904003805d3b3c2678f539980b097a Mon Sep 17 00:00:00 2001 From: Andrei Malashkin Date: Tue, 24 Sep 2024 13:36:53 +0200 Subject: [PATCH] upadate docs to build a single test --- readme.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 04c1524d27..e56d7f2930 100644 --- a/readme.md +++ b/readme.md @@ -31,7 +31,14 @@ eval "$buildPhase" eval "$checkPhase" ``` - +if you want to build a single test: +``` +nix develop .#crypto3-debug-tests +cd crypto3/ +mkdir build && cd build +eval "$configurePhase" +ninja TEST_NAME +``` To build and test an individual project (crypto3, for example): ```