Browse Source

lua has not implemented sys.net.Socket yet

Andy Li 8 năm trước cách đây
mục cha
commit
7c6b468886
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      tests/sys/src/Main.hx

+ 2 - 0
tests/sys/src/Main.hx

@@ -9,7 +9,9 @@ class Main {
 		runner.addCase(new io.TestFile());
 		runner.addCase(new io.TestFileInput());
 		runner.addCase(new io.TestProcess());
+		#if !lua
 		runner.addCase(new net.TestSocket());
+		#end
 		Report.create(runner);
 		runner.run();
 	}