summary refs log tree commit diff stats
path: root/tests/accept/compile/tposix.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/accept/compile/tposix.nim')
-rwxr-xr-xtests/accept/compile/tposix.nim16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/accept/compile/tposix.nim b/tests/accept/compile/tposix.nim
deleted file mode 100755
index bf0b49586..000000000
--- a/tests/accept/compile/tposix.nim
+++ /dev/null
@@ -1,16 +0,0 @@
-# Test Posix interface
-
-when not defined(windows):
-
-  import posix
-
-  var
-    u: Tutsname
-
-  discard uname(u)
-
-  writeln(stdout, u.sysname)
-  writeln(stdout, u.nodename)
-  writeln(stdout, u.release)
-  writeln(stdout, u.machine)
-