We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bf01bb commit 05bcca9Copy full SHA for 05bcca9
test/utils/commonSetupOnce.m
@@ -39,7 +39,7 @@ function commonSetupOnce(testCase)
39
testCase.Sigterm = @(id)"taskkill /F /pid " + id;
40
elseif isunix && ~ismac
41
testCase.ListPid = @(name)"ps -C " + name;
42
- testCase.ReadPidList = @readtable;
+ testCase.ReadPidList = @(file)readtable(file, "ReadVariableNames", true, "VariableNamesLine", 1);
43
testCase.ExtractPid = @(table)table.PID;
44
testCase.Sigint = @(id)"kill " + id; % kill sends a SIGTERM instead of SIGINT but turns out this is sufficient to terminate OTEL collector on Linux
45
testCase.Sigterm = @(id)"kill " + id;
0 commit comments