浏览代码

Improved Test output speed with large stdout line counts

Brian Fiete 1 年之前
父节点
当前提交
d5c336ffab
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      IDE/src/TestManager.bf

+ 1 - 1
IDE/src/TestManager.bf

@@ -51,7 +51,7 @@ namespace IDE
 		public int mProjectInfoIdx = -1;
 		public TestInstance mTestInstance ~ delete _;
 		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 String mPrevConfigName ~ delete _;
 		public bool mDebug;