]> Zhao Yanbai Git Server - minix.git/commit
ipc tests by GQ
authorBen Gras <ben@minix3.org>
Mon, 21 Sep 2009 14:53:53 +0000 (14:53 +0000)
committerBen Gras <ben@minix3.org>
Mon, 21 Sep 2009 14:53:53 +0000 (14:53 +0000)
commita4d1b17453312aa47b0be1abaeec33978b5446fa
tree3e5dd73f1f2e75d6a8d3762ebf78bc9168b3a210
parent75d3db49118d6497087d23a7b4959fa99142a5e6
ipc tests by GQ
98 files changed:
test/ipc/Makefile [new file with mode: 0644]
test/ipc/lib/Makefile [new file with mode: 0644]
test/ipc/lib/ipcmsg.h [new file with mode: 0644]
test/ipc/lib/ipcsem.h [new file with mode: 0644]
test/ipc/lib/ipcshm.h [new file with mode: 0644]
test/ipc/lib/libipc.c [new file with mode: 0644]
test/ipc/lib/parse_opts.c [new file with mode: 0644]
test/ipc/lib/rmobj.c [new file with mode: 0644]
test/ipc/lib/rmobj.h [new file with mode: 0644]
test/ipc/lib/test.h [new file with mode: 0644]
test/ipc/lib/tst_res.c [new file with mode: 0644]
test/ipc/lib/tst_sig.c [new file with mode: 0644]
test/ipc/lib/tst_tmpdir.c [new file with mode: 0644]
test/ipc/lib/usctest.h [new file with mode: 0644]
test/ipc/msgctl/Makefile [new file with mode: 0644]
test/ipc/msgctl/msgctl01.c [new file with mode: 0644]
test/ipc/msgctl/msgctl02.c [new file with mode: 0644]
test/ipc/msgctl/msgctl03.c [new file with mode: 0644]
test/ipc/msgctl/msgctl04.c [new file with mode: 0644]
test/ipc/msgctl/msgctl05.c [new file with mode: 0644]
test/ipc/msgctl/msgctl06.c [new file with mode: 0644]
test/ipc/msgctl/msgctl07.c [new file with mode: 0644]
test/ipc/msgctl/msgctl08.c [new file with mode: 0644]
test/ipc/msgctl/msgctl09.c [new file with mode: 0644]
test/ipc/msgget/Makefile [new file with mode: 0644]
test/ipc/msgget/msgget01.c [new file with mode: 0644]
test/ipc/msgget/msgget02.c [new file with mode: 0644]
test/ipc/msgget/msgget03.c [new file with mode: 0644]
test/ipc/msgget/msgget04.c [new file with mode: 0644]
test/ipc/msgrcv/Makefile [new file with mode: 0644]
test/ipc/msgrcv/msgrcv01.c [new file with mode: 0644]
test/ipc/msgrcv/msgrcv02.c [new file with mode: 0644]
test/ipc/msgrcv/msgrcv03.c [new file with mode: 0644]
test/ipc/msgrcv/msgrcv04.c [new file with mode: 0644]
test/ipc/msgrcv/msgrcv05.c [new file with mode: 0644]
test/ipc/msgrcv/msgrcv06.c [new file with mode: 0644]
test/ipc/msgsnd/Makefile [new file with mode: 0644]
test/ipc/msgsnd/msgsnd01.c [new file with mode: 0644]
test/ipc/msgsnd/msgsnd02.c [new file with mode: 0644]
test/ipc/msgsnd/msgsnd03.c [new file with mode: 0644]
test/ipc/msgsnd/msgsnd04.c [new file with mode: 0644]
test/ipc/msgsnd/msgsnd05.c [new file with mode: 0644]
test/ipc/msgsnd/msgsnd06.c [new file with mode: 0644]
test/ipc/semctl/Makefile [new file with mode: 0644]
test/ipc/semctl/semctl01.c [new file with mode: 0644]
test/ipc/semctl/semctl02.c [new file with mode: 0644]
test/ipc/semctl/semctl03.c [new file with mode: 0644]
test/ipc/semctl/semctl04.c [new file with mode: 0644]
test/ipc/semctl/semctl05.c [new file with mode: 0644]
test/ipc/semctl/semctl06.c [new file with mode: 0644]
test/ipc/semctl/semctl07.c [new file with mode: 0644]
test/ipc/semctl/test.sh [new file with mode: 0644]
test/ipc/semget/Makefile [new file with mode: 0644]
test/ipc/semget/semget01.c [new file with mode: 0644]
test/ipc/semget/semget02.c [new file with mode: 0644]
test/ipc/semget/semget03.c [new file with mode: 0644]
test/ipc/semget/semget05.c [new file with mode: 0644]
test/ipc/semget/semget06.c [new file with mode: 0644]
test/ipc/semget/test.sh [new file with mode: 0644]
test/ipc/semop/Makefile [new file with mode: 0644]
test/ipc/semop/semop01.c [new file with mode: 0644]
test/ipc/semop/semop02.c [new file with mode: 0644]
test/ipc/semop/semop03.c [new file with mode: 0644]
test/ipc/semop/semop04.c [new file with mode: 0644]
test/ipc/semop/semop05.c [new file with mode: 0644]
test/ipc/semop/test.sh [new file with mode: 0644]
test/ipc/shmat/Makefile [new file with mode: 0644]
test/ipc/shmat/shmat01.c [new file with mode: 0644]
test/ipc/shmat/shmat02.c [new file with mode: 0644]
test/ipc/shmat/shmat03.c [new file with mode: 0644]
test/ipc/shmat/test.sh [new file with mode: 0644]
test/ipc/shmctl/Makefile [new file with mode: 0644]
test/ipc/shmctl/shmctl01.c [new file with mode: 0644]
test/ipc/shmctl/shmctl02.c [new file with mode: 0644]
test/ipc/shmctl/shmctl03.c [new file with mode: 0644]
test/ipc/shmctl/shmctl04.c [new file with mode: 0644]
test/ipc/shmctl/test.sh [new file with mode: 0644]
test/ipc/shmdt/Makefile [new file with mode: 0644]
test/ipc/shmdt/shmdt01.c [new file with mode: 0644]
test/ipc/shmdt/shmdt02.c [new file with mode: 0644]
test/ipc/shmdt/test.sh [new file with mode: 0644]
test/ipc/shmget/Makefile [new file with mode: 0644]
test/ipc/shmget/shmget01.c [new file with mode: 0644]
test/ipc/shmget/shmget02.c [new file with mode: 0644]
test/ipc/shmget/shmget04.c [new file with mode: 0644]
test/ipc/shmget/shmget05.c [new file with mode: 0644]
test/ipc/shmget/test.sh [new file with mode: 0644]
test/ipc/shmt/Makefile [new file with mode: 0644]
test/ipc/shmt/shmt01.c [new file with mode: 0644]
test/ipc/shmt/shmt02.c [new file with mode: 0644]
test/ipc/shmt/shmt03.c [new file with mode: 0644]
test/ipc/shmt/shmt04.c [new file with mode: 0644]
test/ipc/shmt/shmt05.c [new file with mode: 0644]
test/ipc/shmt/shmt06.c [new file with mode: 0644]
test/ipc/shmt/shmt07.c [new file with mode: 0644]
test/ipc/shmt/shmt08.c [new file with mode: 0644]
test/ipc/shmt/shmt10.c [new file with mode: 0644]
test/ipc/shmt/testshm.sh [new file with mode: 0644]