Skip to content

Commit

Permalink
Implemented requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
fanoI committed Jan 5, 2018
1 parent 893402c commit 5d18c21
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Tests/Cosmos.Compiler.Tests.Bcl/Kernel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ protected override void Run()
EncodingTest.Execute();
RandomTests.Execute();

//System.Collections.Generic.ListTest.Execute();
//System.Collections.Generic.QueueTest.Execute();
System.Collections.Generic.ListTest.Execute();
System.Collections.Generic.QueueTest.Execute();
//System.Collections.Generic.DictionaryTest.Execute();

TestController.Completed();
Expand Down
4 changes: 0 additions & 4 deletions source/Cosmos.Core_Plugs/Cosmos.Core_Plugs.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,4 @@
<Folder Include="Properties\" />
</ItemGroup>

<ItemGroup>
<None Include="System\Threading\TaskImpl.cs" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define COSMOSDEBUG
//#define COSMOSDEBUG
using System.IO;
using IL2CPU.API.Attribs;
using Cosmos.System;
Expand Down
2 changes: 1 addition & 1 deletion source/Cosmos.System2_Plugs/System/IO/DirectoryInfoImpl.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define COSMOSDEBUG
//#define COSMOSDEBUG
using System.IO;
using IL2CPU.API.Attribs;
using Cosmos.System;
Expand Down
2 changes: 2 additions & 0 deletions source/Cosmos.System2_Plugs/System/IO/FileImpl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ public static void WriteAllLines(string aFile, string[] contents)
using (var xSW = new StreamWriter(aFile))
{
foreach (var current in contents)
{
xSW.WriteLine(current);
}
}
}
}
Expand Down

0 comments on commit 5d18c21

Please sign in to comment.