Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pin the number of jobs in some Make targets
If someone runs `make -j16 test_unit test_analyzer test_web_sqlite`, then the command would spuriously would fail due to a filesystem racecondition. The `cp ldlogger build/bin` would basically try to copy a not-yet-existing file, causing a failure immediately, or later in the test pipeline, when it excercises the logger. Causing an error similar to this: ``` make[1]: Leaving directory `codechecker/analyzer' make: *** [test_analyzer] Error 2 make: *** Waiting for unfinished jobs.... ``` Let's work around the issue by explicitly restricting the number of jobs in those calls.
- Loading branch information