Skip to content

Commit 4415886

Browse files
committed
README.md: Add tips for make check
Problem: `make check` in flux-core takes a very long time to complete without use of `-j`, but the README doesn't mention or suggest use of this option. Add `-jN` to the options of both `make` and `make check` in the instructions. Also add a tip suggesting the use of `-j` with `make check` specifically, and add a link to the testsuite README.
1 parent 1271543 commit 4415886

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,14 @@ are available for [redhat](scripts/install-deps-rpm.sh) and
3333
```
3434
./autogen.sh # skip if building from a release tarball
3535
./configure
36-
make
37-
make check
36+
make -jN
37+
make -jN check
3838
```
3939

40+
> [!TIP]
41+
> `make check` runs many tests. Use of `-jN` recommended.
42+
> For more details about the testsuite, see the [README](t/README.md).
43+
4044
##### VSCode Dev Containers
4145

4246
If you use VSCode we have a dev container and [instructions](vscode.md).

0 commit comments

Comments
 (0)