Skip to content

Commit 6d2987a

Browse files
committed
build in a container on Linux to preserve backward compatibility
1 parent 05bcca9 commit 6d2987a

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

test/utils/terminateProcess.m

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@ function terminateProcess(testCase, process, terminatecmd)
88
end
99

1010
system(testCase.ListPid(process) + " > " + testCase.PidFile);
11-
type(testCase.PidFile);
1211
tbl = testCase.ReadPidList(testCase.PidFile);
13-
if isa(tbl, "table")
14-
tbl.Properties.VariableNames
15-
end
1612
pid = testCase.ExtractPid(tbl);
1713
retry = 0;
1814
% sometimes kill will fail with a RuntimeError: windows-kill-library: ctrl-routine:findAddress:checkAddressIsNotNull
@@ -24,11 +20,7 @@ function terminateProcess(testCase, process, terminatecmd)
2420
end
2521
pause(2); % give a little time for the collector to shut down
2622
system(testCase.ListPid(process) + " > " + testCase.PidFile);
27-
type(testCase.PidFile);
2823
tbl = testCase.ReadPidList(testCase.PidFile);
29-
if isa(tbl, "table")
30-
tbl.Properties.VariableNames
31-
end
3224
pid = testCase.ExtractPid(tbl);
3325
retry = retry + 1;
3426
end

0 commit comments

Comments
 (0)