svn commit: [25988] trunk/busybox/shell/hush_test/hush-misc

vapier at busybox.net vapier at busybox.net
Mon Apr 6 12:36:10 UTC 2009


Author: vapier
Date: 2009-04-06 12:36:10 +0000 (Mon, 06 Apr 2009)
New Revision: 25988

Log:
add tests for basic fd open/close/dupe

Added:
   trunk/busybox/shell/hush_test/hush-misc/exec.right
   trunk/busybox/shell/hush_test/hush-misc/exec.tests


Changeset:
Added: trunk/busybox/shell/hush_test/hush-misc/exec.right
===================================================================
--- trunk/busybox/shell/hush_test/hush-misc/exec.right	                        (rev 0)
+++ trunk/busybox/shell/hush_test/hush-misc/exec.right	2009-04-06 12:36:10 UTC (rev 25988)
@@ -0,0 +1,6 @@
+pass fd out open
+pass fd out dup
+pass fd out close
+pass fd in open
+pass fd in dup
+pass fd in close

Added: trunk/busybox/shell/hush_test/hush-misc/exec.tests
===================================================================
--- trunk/busybox/shell/hush_test/hush-misc/exec.tests	                        (rev 0)
+++ trunk/busybox/shell/hush_test/hush-misc/exec.tests	2009-04-06 12:36:10 UTC (rev 25988)
@@ -0,0 +1,30 @@
+# make sure we have a way of checking these things
+[ ! -e /dev/fd ] && exit 1
+
+[ -e /dev/fd/44 ] && exit 1
+exec 44>/dev/null
+[ -e /dev/fd/44 ] || exit 1
+echo pass fd out open
+
+[ -e /dev/fd/55 ] && exit 1
+exec 55>&44
+[ -e /dev/fd/55 ] || exit 1
+echo pass fd out dup
+
+exec 44>&-
+[ -e /dev/fd/44 ] && exit 1
+echo pass fd out close
+
+[ -e /dev/fd/66 ] && exit 1
+exec 66</dev/null
+[ -e /dev/fd/66 ] || exit 1
+echo pass fd in open
+
+[ -e /dev/fd/77 ] && exit 1
+exec 77<&66
+[ -e /dev/fd/77 ] || exit 1
+echo pass fd in dup
+
+exec 66<&-
+[ -e /dev/fd/66 ] && exit 1
+echo pass fd in close



More information about the busybox-cvs mailing list