Browse Source

[cs] disable very long filenames in C# sys tests

Aurel Bílý 6 years ago
parent
commit
018f6cfce6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/sys/src/FileNames.hx

+ 1 - 1
tests/sys/src/FileNames.hx

@@ -28,7 +28,7 @@ class FileNames {
 		case _:
 		[
 			// 255 bytes is the max filename length according to http://en.wikipedia.org/wiki/Comparison_of_file_systems
-			#if !(python || neko || cpp || java)
+			#if !(python || neko || cpp || java || cs)
 			[for (i in 0...255) "a"].join(""),
 			#end
 		];