Ver código fonte

Improved Test output speed with large stdout line counts

Brian Fiete 1 ano atrás
pai
commit
d5c336ffab
1 arquivos alterados com 1 adições e 1 exclusões
  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;