I have a fairly large project with autotools support that lives in a directory tree consisting of many directories with subdirectories. He got a check target (in each subdirectory, as well as in the main directory), which performs many automated tests. The check target is constructed recursively.
Building, as well as parallel testing (using the -j make option) works for most directories. However, there is one directory that contains a test that does not work in parallel execution (time sensitivity), but is transmitted during a serial run.
The question arises: is there a way to force make to build the check series in series only in this subdirectory while building everything else?
source share