summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-01-05 22:15:16 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-01-05 22:15:16 +0000
commit27f096634a1892afb3b69f5b0313c7ef9facdda5 (patch)
treefcb4e163d7128545019f79b4f52beee89f223c87 /c
parentWas not actually installing the test. (diff)
downloadrtems-27f096634a1892afb3b69f5b0313c7ef9facdda5.tar.bz2
Screen updated since test runs.
Diffstat (limited to 'c')
-rw-r--r--c/src/tests/psxtests/psxmsgq01/psxmsgq01.scn25
1 files changed, 24 insertions, 1 deletions
diff --git a/c/src/tests/psxtests/psxmsgq01/psxmsgq01.scn b/c/src/tests/psxtests/psxmsgq01/psxmsgq01.scn
index 3adecad0d5..bdbca152e7 100644
--- a/c/src/tests/psxtests/psxmsgq01/psxmsgq01.scn
+++ b/c/src/tests/psxtests/psxmsgq01/psxmsgq01.scn
@@ -1,3 +1,26 @@
*** POSIX MESSAGE QUEUE TEST ***
-
+mq_open - Create with maxmsg (-1) (EINVAL)
+mq_open - Create with msgsize (-1) (EINVAL)
+mq_open - Open new mq without create flag (ENOENT)
+mq_open - Open with too long of a name (ENAMETOOLONG)
+mq_open - SUCCESSFUL
+mq_open - Create an Existing mq (EEXIST)
+mq_open - system is out of resources (ENFILE)
+mq_close and mq_unlink (mq3...mqn) - SUCCESSFUL
+mq_unlink - mq_unlink with too long of a name (ENAMETOOLONG)
+mq_unlink - UNSUCCESSFUL (ENOENT)
+mq_unlink (NULL) - EINVAL
+mq_unlink ("") - EINVAL
+mq_close - UNSUCCESSFUL (EBADF)
+mq_send - Closed message queue (EBADF)
+mq_open - Open a read only queue
+mq_send - Read only message queue (EBADF)
+mq_send - Priority out of range (EINVAL)
+mq_send - Message longer than msg_len (EMSGSIZE)
+mq_open - Open an existing mq ( same id )
+mq_unlink - mq1 SUCCESSFUL
+mq_open - Reopen mq1 SUCCESSFUL with a different id
+mq_unlink - mq1 SUCCESSFUL
+mq_close mq1 - SUCCESSFUL
+mq_unlink - UNSUCCESSFUL (ENOENT)
*** END OF POSIX MESSAGE QUEUE TEST ***