summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-12-21libcsupport: Add rtems_resource_snapshot_take()Sebastian Huber2-5/+101
Add rtems_resource_rtems_api, rtems_resource_posix_api, rtems_resource_snapshot, rtems_resource_snapshot_equal(), and rtems_resource_snapshot_check().
2012-12-05posix: Add and use <rtems/posix/psignalimpl.h>Sebastian Huber1-1/+3
This file contains the parts of <rtems/posix/psignal.h> that are only necessary for the POSIX API implementation.
2012-11-22Filesystem: PR1619: Use ENOSYS for default statvfsSebastian Huber2-4/+4
POSIX does not specify an error number in case the file system does not support this call. Use the Linux value.
2012-11-15score: Add RTEMS_FATAL_SOURCE_EXITSebastian Huber1-3/+0
Include <bsp/default-initial-extension.h> in all BSPs. Call rtems_fatal() with RTEMS_FATAL_SOURCE_EXIT as source and the exit() status code as fatal code in every bsp_cleanup(). Move previous bsp_cleanup() code into bsp_fatal_extension().
2012-11-15sapi: Add and use rtems_internal_error_descriptionSebastian Huber1-31/+1
2012-10-25score: Work area initialization API changeSebastian Huber1-2/+7
The work areas (RTEMS work space and C program heap) will be initialized now in a separate step and are no longer part of rtems_initialize_data_structures(). Initialization is performed with tables of Heap_Area entries. This allows usage of scattered memory areas present on various small scale micro-controllers. The sbrk() support API changes also. The bsp_sbrk_init() must now deal with a minimum size for the first memory chunk to take the configured work space size into account.
2012-08-06Revert "Add config.h.in."Gedare Bloom1-107/+0
This reverts commit cf42a6ea9dbb6ebee498ae8db319d3e475bcd6be.
2012-07-19Require automake-1.12.2.Ralf Corsépius1-1/+1
2012-07-19Require autoconf-2.69.Ralf Corsépius1-1/+1
2012-07-17psxtests/psxchroot01: TypoSebastian Huber1-1/+1
2012-07-17psxtests/psxpipe01: Use greedy allocation APISebastian Huber1-3/+4
2012-07-17score: Change greedy allocation APISebastian Huber5-16/+23
2012-05-31Fix C files which had two semi-colons at EOLJoel Sherrill1-2/+1
2012-05-29Filesystem: Wait for unmount() to finishSebastian Huber2-43/+60
2012-05-24Add config.h.in.Ralf Corsépius1-0/+107
2012-05-15Filesystem: Use ioctl_command_tSebastian Huber1-3/+1
2012-05-11psxtests - Eliminate missing prototype warningsJoel Sherrill71-201/+556
2012-05-11Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill409-1015/+0
Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
2012-05-11Filesystem: PR1398: Fix lseek() mechanicSebastian Huber1-33/+30
According to POSIX the lseek() function shall not, by itself, extend the size of a file. Remove the size field of rtems_libio_t. A file has only one size but may have multiple open file descriptors. Thus a file size field in the file descriptor may lead to inconsistencies. New default handlers rtems_filesystem_default_lseek_file() and rtems_filesystem_default_lseek_directory().
2012-05-07Revert: Remove CVS IdsJoel Sherrill84-0/+400
See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
2012-05-04Remove CVS-Ids.Ralf Corsépius84-400/+0
2012-05-03psxaio01/psxaio02 - Formatting correctionsJoel Sherrill2-18/+18
The file header was moved over one space. These two were the only files in the testsuite which did this.
2012-03-13Filesystem: Read-only file system checksSebastian Huber2-8/+30
o Make sure EROFS is indicated for write operations on a read-only file system. o Add error indication for read-only file systems in fchmod() and fchown() according to POSIX.
2012-03-13Filesystem: Reference counting for locationsSebastian Huber8-168/+140
o A new data structure rtems_filesystem_global_location_t was introduced to be used for o the mount point location in the mount table entry, o the file system root location in the mount table entry, o the root directory location in the user environment, and o the current directory location in the user environment. During the path evaluation global start locations are obtained to ensure that the current file system instance will be not unmounted in the meantime. o The user environment uses now reference counting and is protected from concurrent access. o The path evaluation process was completely rewritten and simplified. The IMFS, RFS, NFS, and DOSFS use now a generic path evaluation method. Recursive calls in the path evaluation have been replaced with iteration to avoid stack overflows. Only the evaluation of symbolic links is recursive. No dynamic memory allocations and intermediate buffers are used in the high level path evaluation. No global locks are held during the file system instance specific path evaluation process. o Recursive symbolic link evaluation is now limited by RTEMS_FILESYSTEM_SYMLOOP_MAX. Applications can retrieve this value via sysconf(). o The device file system (devFS) uses now no global variables and allocation from the workspace. Node names are allocated from the heap. o The upper layer lseek() performs now some parameter checks. o The upper layer ftruncate() performs now some parameter checks. o unmask() is now restricted to the RWX flags and protected from concurrent access. o The fchmod_h and rmnod_h file system node handlers are now a file system operation. o The unlink_h operation has been removed. All nodes are now destroyed with the rmnod_h operation. o New lock_h, unlock_h, clonenod_h, and are_nodes_equal_h file system operations. o The path evaluation and file system operations are now protected by per file system instance lock and unlock operations. o Fix and test file descriptor duplicate in fcntl(). o New test fstests/fsnofs01.
2012-02-23psxtests: Fix typo in psxstatSebastian Huber1-1/+1
2012-02-17Use alternative APISebastian Huber3-11/+3
Replaced Allocate_majority_of_workspace() with rtems_workspace_allocate(). Replaced Allocate_majority_of_heap() with rtems_heap_greedy_allocate().
2012-02-01Remove all .cvsignore files.Joel Sherrill83-203/+0
2011-12-132011-12-13 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2-1/+5
* psxconfig01/init.c: Create floating point tasks.
2011-12-132011-12-13 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2-15/+7
* psxmsgq04/init.c: Fixed allocation of second message queue.
2011-12-132011-12-13 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2-61/+233
* psxconfig01/init.c: Create more objects.
2011-12-132011-12-13 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-1/+4
* psx07/init.c: Remove unused var "clock_allowed".
2011-12-132011-12-13 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius3-17/+29
* configure.ac: Check for getrusage decl. * psxgetrusage01/init.c: Fix header file inclusion order. Move configuration section up. Apply HAVE_DECL_GETRUSAGE.
2011-12-092011-12-09 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber2-1/+5
* psxconfig01/init.c: Fix due to alignment issue.
2011-12-092011-12-09 Sebastian Huber <sebastian.huber@embedded-brains.de>Sebastian Huber8-1/+357
* psxconfig01/.cvsignore, psxconfig01/Makefile.am, psxconfig01/init.c, psxconfig01/psxconfig01.doc, psxconfig01/psxconfig01.scn: New files. * Makefile.am, configure.ac: Reflect changes above.
2011-12-082011-12-08 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill81-221/+118
PR 1589/build * psx01/Makefile.am, psx02/Makefile.am, psx03/Makefile.am, psx04/Makefile.am, psx05/Makefile.am, psx06/Makefile.am, psx07/Makefile.am, psx08/Makefile.am, psx09/Makefile.am, psx10/Makefile.am, psx11/Makefile.am, psx12/Makefile.am, psx13/Makefile.am, psx14/Makefile.am, psx15/Makefile.am, psx16/Makefile.am, psxaio01/Makefile.am, psxaio02/Makefile.am, psxaio03/Makefile.am, psxalarm01/Makefile.am, psxautoinit01/Makefile.am, psxautoinit02/Makefile.am, psxbarrier01/Makefile.am, psxcancel/Makefile.am, psxcancel01/Makefile.am, psxchroot01/Makefile.am, psxclassic01/Makefile.am, psxcleanup/Makefile.am, psxcleanup01/Makefile.am, psxclock/Makefile.am, psxcond01/Makefile.am, psxeintr_join/Makefile.am, psxenosys/Makefile.am, psxfatal01/Makefile.am, psxfatal02/Makefile.am, psxfchx01/Makefile.am, psxfile01/Makefile.am, psxfile02/Makefile.am, psxfilelock01/Makefile.am, psxgetrusage01/Makefile.am, psxid01/Makefile.am, psximfs01/Makefile.am, psximfs02/Makefile.am, psxintrcritical01/Makefile.am, psxitimer/Makefile.am, psxkey01/Makefile.am, psxkey02/Makefile.am, psxkey03/Makefile.am, psxmount/Makefile.am, psxmsgq01/Makefile.am, psxmsgq02/Makefile.am, psxmsgq03/Makefile.am, psxmsgq04/Makefile.am, psxmutexattr01/Makefile.am, psxobj01/Makefile.am, psxpasswd01/Makefile.am, psxpasswd02/Makefile.am, psxpipe01/Makefile.am, psxrdwrv/Makefile.am, psxreaddir/Makefile.am, psxrwlock01/Makefile.am, psxsem01/Makefile.am, psxsignal01/Makefile.am, psxsignal02/Makefile.am, psxsignal03/Makefile.am, psxsignal04/Makefile.am, psxsignal05/Makefile.am, psxsignal06/Makefile.am, psxspin01/Makefile.am, psxspin02/Makefile.am, psxstack01/Makefile.am, psxstack02/Makefile.am, psxstat/Makefile.am, psxsysconf/Makefile.am, psxtime/Makefile.am, psxtimer01/Makefile.am, psxtimer02/Makefile.am, psxtimes01/Makefile.am, psxualarm/Makefile.am, psxusleep/Makefile.am: Remove obsolete optional manager capability.
2011-12-082011-12-08 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius3-65/+8
PR 1981/cpukit * configure.ac: Remove checks for pthread_attr_getcputime, pthread_attr_setcputime. * psx07/init.c: Remove references to pthread_attr_getcputime, pthread_attr_setcputime.
2011-10-252011-10-25 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius3-18/+36
* psxmsgq01/init.c: Introduce fatal_posix_mqd. Replace fatal_posix_service_pointer_minus_one with fatal_posix_mqd. * psxsem01/init.c: Introduce fatal_posix_sem. Replace fatal_posix_service_pointer_minus_one with fatal_posix_sem.
2011-10-252011-10-25 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-7/+12
* psxreaddir/test.c: Remove bogus casts. Fix fprintf format strings.
2011-10-25Apply missing patch.Ralf Corsepius1-2/+0
2011-10-222011-10-22 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius2-1/+4
* psxfile01/test.c: Remove local redeclaration of IMFS_dump.
2011-10-17Whitespace fixes.Ralf Corsepius2-2/+2
2011-10-172011-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius37-72/+160
* psxhdrs/pthread01.c, psxhdrs/pthread02.c, psxhdrs/pthread03.c, psxhdrs/pthread04.c, psxhdrs/pthread05.c, psxhdrs/pthread06.c, psxhdrs/pthread07.c, psxhdrs/pthread09.c, psxhdrs/pthread10.c, psxhdrs/pthread11.c, psxhdrs/pthread12.c, psxhdrs/pthread13.c, psxhdrs/pthread14.c, psxhdrs/pthread15.c, psxhdrs/pthread16.c, psxhdrs/pthread17.c, psxhdrs/pthread18.c, psxhdrs/pthread19.c, psxhdrs/pthread20.c, psxhdrs/pthread21.c, psxhdrs/pthread22.c, psxhdrs/pthread23.c, psxhdrs/pthread24.c, psxhdrs/pthread25.c, psxhdrs/pthread26.c, psxhdrs/pthread27.c, psxhdrs/pthread28.c, psxhdrs/pthread29.c, psxhdrs/pthread30.c, psxhdrs/pthread34.c, psxhdrs/pthread35.c, psxhdrs/pthread36.c, psxhdrs/pthread37.c, psxhdrs/pthread38.c, psxhdrs/pthread39.c, psxhdrs/pthread40.c: Let test() return values (avoid warnings).
2011-10-172011-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius11-20/+47
* psxhdrs/cond01.c, psxhdrs/cond02.c, psxhdrs/cond03.c, psxhdrs/cond04.c, psxhdrs/cond05.c, psxhdrs/cond06.c, psxhdrs/cond07.c, psxhdrs/cond08.c, psxhdrs/cond09.c, psxhdrs/cond10.c: Let test() return values (avoid warnings).
2011-10-172011-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius17-32/+73
* psxhdrs/mutex01.c, psxhdrs/mutex02.c, psxhdrs/mutex03.c, psxhdrs/mutex04.c, psxhdrs/mutex05.c, psxhdrs/mutex06.c, psxhdrs/mutex07.c, psxhdrs/mutex08.c, psxhdrs/mutex09.c, psxhdrs/mutex10.c, psxhdrs/mutex11.c, psxhdrs/mutex12.c, psxhdrs/mutex13.c, psxhdrs/mutex14.c, psxhdrs/mutex15.c, psxhdrs/mutex16.c: Let test() return values (avoid warnings).
2011-10-172011-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius15-28/+65
* psxhdrs/proc01.c, psxhdrs/proc02.c, psxhdrs/proc03.c, psxhdrs/proc04.c, psxhdrs/proc05.c, psxhdrs/proc06.c, psxhdrs/proc07.c, psxhdrs/proc08.c, psxhdrs/proc09.c, psxhdrs/proc10.c, psxhdrs/proc11.c, psxhdrs/proc12.c, psxhdrs/proc13.c, psxhdrs/proc14.c: Let test() return values (avoid warnings).
2011-10-17Remove whitespaces.Ralf Corsepius10-10/+10
2011-10-172011-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius9-16/+39
* psxhdrs/sched01.c, psxhdrs/sched02.c, psxhdrs/sched03.c, psxhdrs/sched04.c, psxhdrs/sched05.c, psxhdrs/sched06.c, psxhdrs/sched07.c, psxhdrs/sched08.c: Let test() return values (avoid warnings).
2011-10-172011-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius24-47/+105
* psxhdrs/signal01.c, psxhdrs/signal02.c, psxhdrs/signal03.c, psxhdrs/signal04.c, psxhdrs/signal05.c, psxhdrs/signal06.c, psxhdrs/signal07.c, psxhdrs/signal08.c, psxhdrs/signal09.c, psxhdrs/signal10.c, psxhdrs/signal11.c, psxhdrs/signal12.c, psxhdrs/signal13.c, psxhdrs/signal14.c, psxhdrs/signal15.c, psxhdrs/signal16.c, psxhdrs/signal17.c, psxhdrs/signal18.c, psxhdrs/signal19.c, psxhdrs/signal20.c, psxhdrs/signal21.c, psxhdrs/signal22.c, psxhdrs/signal23.c: Let test() return values (avoid warnings).
2011-10-152011-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius5-8/+18
* psxhdrs/key01.c, psxhdrs/key02.c, psxhdrs/key03.c, psxhdrs/key04.c: Let test() return values (avoid warnings).
2011-10-152011-10-15 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius7-12/+30
* psxhdrs/clock01.c, psxhdrs/clock02.c, psxhdrs/clock03.c, psxhdrs/clock04.c, psxhdrs/clock05.c, psxhdrs/clock06.c: Let test() return values (avoid warnings).