Skip to content

Commit

Permalink
[tests] Don't run parallel make in tests/common/TestProjects/ComplexA…
Browse files Browse the repository at this point in the history
…ssembly, it may cause make to deadlock.
  • Loading branch information
rolfbjarne committed Jun 25, 2021
1 parent 6d6db24 commit 8aff15a
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,11 @@ public void SetUp ()
RunMake (Path.Combine (Configuration.RootPath, "tests", "common", "TestProjects", "ComplexAssembly"), environment: env);
}

static void RunMake (string directory, Dictionary<string, string> environment = null, int j = 8)
static void RunMake (string directory, Dictionary<string, string> environment = null)
{
var arguments = new List<string> {
"-C",
directory,
$"-j{j}",
"V=1",
};
var rv = ExecutionHelper.Execute ("make",
Expand Down

0 comments on commit 8aff15a

Please sign in to comment.