diff options
Diffstat (limited to 'tests/syscalls.scm')
-rw-r--r-- | tests/syscalls.scm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/syscalls.scm b/tests/syscalls.scm index 706f3dff44..049ca93267 100644 --- a/tests/syscalls.scm +++ b/tests/syscalls.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2015 David Thompson <davet@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -67,6 +68,14 @@ (lambda args (memv (system-error-errno args) (list EPERM EINVAL ENOENT))))) +(test-assert "mkdtemp!" + (let* ((tmp (or (getenv "TMPDIR") "/tmp")) + (dir (mkdtemp! (string-append tmp "/guix-test-XXXXXX")))) + (and (file-exists? dir) + (begin + (rmdir dir) + #t)))) + (test-assert "all-network-interfaces" (match (all-network-interfaces) (((? string? names) ..1) |