doc: fix command invoking tests

The developer documentation from `building.md` suggested to run unit tests with `./tools/toolchain/dbuild test` command, however this command only invokes `test` bash tool, which immediately returns with status `1`:
```
[piotrs@new-host scylladb]$ ./tools/toolchain/dbuild test
[piotrs@new-host scylladb]$ echo $?
1
```
This was probably unintended mistake and what author really meant was invoking `dbuild ninja test`.

Closes #12890
This commit is contained in:
Piotr Smaroń
2023-02-16 10:19:44 +01:00
committed by Botond Dénes
parent e2f6e0b848
commit d2bfe124ad

View File

@@ -40,7 +40,7 @@ After the build completes, you can find build artifacts in `build/<mode>` direct
You can run unit tests with:
```console
./tools/toolchain/dbuild test
./tools/toolchain/dbuild ninja test
```
or launch a Scylla server locally with: