1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 20:12:21 +02:00

Improved Test output speed with large stdout line counts

This commit is contained in:
Brian Fiete 2024-01-09 08:13:51 -05:00
parent 49df1ffc59
commit d5c336ffab

View file

@ -51,7 +51,7 @@ namespace IDE
public int mProjectInfoIdx = -1; public int mProjectInfoIdx = -1;
public TestInstance mTestInstance ~ delete _; public TestInstance mTestInstance ~ delete _;
public List<ProjectInfo> mProjectInfos = new .() ~ DeleteContainerAndItems!(_); public List<ProjectInfo> mProjectInfos = new .() ~ DeleteContainerAndItems!(_);
public List<String> mQueuedOutput = new .() ~ DeleteContainerAndItems!(_); public Queue<String> mQueuedOutput = new .() ~ DeleteContainerAndItems!(_);
public Monitor mMonitor = new Monitor() ~ delete _; public Monitor mMonitor = new Monitor() ~ delete _;
public String mPrevConfigName ~ delete _; public String mPrevConfigName ~ delete _;
public bool mDebug; public bool mDebug;