summaryrefslogtreecommitdiffstats
path: root/testsuites (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Adding ChangeLogs.Joel Sherrill2000-08-1012-0/+34
|
* Added ifdef on C4x to avoid invalid address alignment checks since thereJoel Sherrill2000-07-263-0/+28
| | | | is no such thing on the C4x.
* Port of RTEMS to the Texas Instruments C3x/C4x DSP families includingJoel Sherrill2000-07-262-0/+17
| | | | | | | | | | | a BSP (c4xsim) supporting the simulator included with gdb. This port was done by Joel Sherrill and Jennifer Averett of OAR Corporation. Also included with this port is a space/time optimization to eliminate FP context switch management on CPUs without hardware or software FP. An issue with this port was that sizeof(unsigned32) = sizeof(unsigned8) on this CPU. This required addressing alignment checks and assumptions as well as fixing code that assumed sizeof(unsigned32) == 4.
* Switch logical in conditional.Joel Sherrill2000-07-131-1/+1
|
* Patch rtems-rc-20000713-1-cvs.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-07-1338-60/+76
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | that is yet another multilib-related structual cleanup patch: Changes: * Make RTEMS_TEST_NO_PAUSE a tests/ subpackage specific option. - Remove RTEMS_TEST_NO_PAUSE from custom/*.cfg, targopts.h and cpuopts.h. - Add autoconf macros RTEMS_*_RTEMS_TEST_NO_PAUSE (aclocal/rtems-test-no-pause.m4). - Add RTEMS_*_RTEMS_TEST_NO_PAUSE support to sptests/configure.ins and tmtests/configure.in. These are the only subdirectories which currently apply RTEMS_TEST_NO_PAUSE. - Add autoconf-DEFS support to all test subpackages' configure.ins below tests/. I.e. AC_DEFINES now get explicitly propagated as preprocessor defines into Makefiles, cf. AM_CPPFLAGS in tests/*/*.am, instead of using a global config-files. - Remove NDEBUG from custom/*.cfg. * AC_DEFINE POSIX_API, ITRON_API and MULTIPROCESSING in exec/configure.in, only. - All other sources now should relay on the values from cpuopts.h and should not define them themselves. - Several related changes to many configure.ins * Bug-fixes to RTEMS_*_RTEMS_DEBUG macros (Actually workarounds to quoting bugs in autoconf). Notes: * This patch is rather immature and only tested for a small subset of BSPs (requires the tests to be enabled and therefore takes an tremendous amount of disc space and time.) * The patches to *cfg were generated by a script. Expect file formating changes :)
* Patch rtems-rc-20000702-1.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-07-031-7/+15
| | | | | that is a hack to workaround a switch generation compiler bug for the SH2 and cleaned up some warnings.
* Thread iterate not ready for submission -- removed.Joel Sherrill2000-06-141-1/+1
|
* Patch from John Cotton <john.cotton@nrc.ca>, Charles-Antoine GauthierJoel Sherrill2000-06-123-2/+8
| | | | | | | | | | | | | | | <charles.gauthier@iit.nrc.ca>, and Darlene A. Stewart <Darlene.Stewart@nrc.ca> to add support for a number of very significant things: + BSPs for many variations on the Motorola MBX8xx board series + Cache Manager including initial support for m68040 and PowerPC + Rework of mpc8xx libcpu code so all mpc8xx CPUs now use same code base. + Rework of eth_comm BSP to utiltize above. John reports this works on the 821 and 860
* Merged from 4.5.0-beta3aJoel Sherrill2000-06-12300-1161/+2529
|
* New file.Joel Sherrill2000-05-241-0/+0
|
* Patch rtems-rc-4.5.0-13-cvs.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>.Joel Sherrill2000-04-13169-0/+472
| | | | adds .cvsignore.
* Patches rtems-rc-20000204-0.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-02-082-2/+2
| | | | | | | | | | | | | | | | | that contains: * Removes remaining (now illegal) references to $(SRC) from a couple of Makefile.ams * Removes duplicate AC_CONFIG_SUBDIRS macro from c/configure.in * Moves ENABLE_LIBCDIR into RTEMS_PROG_C[C|XX]_FOR_TARGET (hides LIBCDIR from most configure scripts, i.e. LIBCDIR becomes less visible) * Adds RTEMS_PROG_C[C|XX]_FOR_TARGET and RTEMS_CANONICALIZE_TOOLS to libbsp/*/configure.ins (A minor bug in previous implementations, which only has an impact when switching to GNU/Cygnus canonicalization) * Cleans up several bogus comments. * Removes MKLIB * Switches the version number to 4.5.0 (for testing version number handling)
* Patch rtems-rc-20000118-2.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill2000-01-31138-139/+0
| | | | | that contains cosmetical changes to the Makefile.ams below tests (removes old, now invalid comments from these Makefile.ams).
* Patch from Eric Norum <eric@cls.usask.ca> to implement this:Joel Sherrill2000-01-211-14/+12
| | | | | | | | | | | | | | | | | | | | I'd like to propose a change to RTEMS task variables that I think would make them more useful. I think that it is early enough in their existence to still make changes to their API. 1) Change type from `int' to `void *'. 2) Add extra argument to task_variable_add -- if non-NULL, a pointer to a `destructor' function to be called when the task exits. This function would be called with that task's value of the task variable as its argument. In many cases, the `dtor' function could be `free'. rtems_status_code rtems_task_variable_add ( rtems_id tid, void **ptr, void (*dtor)(void *)); rtems_status_code rtems_task_variable_delete (rtems_id tid, void **ptr); This would be all we'd need to cleanly and efficiently support C++ per-thread exception information without dragging in all that POSIX API stuff.
* Updated to reflect final test output.Joel Sherrill2000-01-141-3/+15
|
* Updated screen to reflect final test output.Joel Sherrill2000-01-141-24/+114
|
* Fixed warnings.Joel Sherrill2000-01-131-14/+0
|
* POSIX message queues now include complete functionality includingJoel Sherrill2000-01-131-2/+22
| | | | | | | | | | | | | | | | blocking sends when the queue is full. The SuperCore was enhanced to support blocking on send. The existing POSIX API was debugged and numerous test cases were added to psxmsgq01 by Jennifer Averett. SuperCore enhancements and resulting modifications to other APIs were done by Joel. There is one significant point of interpretation for the POSIX API. What happens to threads already blocked on a message queue when the mode of that same message queue is changed from blocking to non-blocking? We decided to unblock all waiting tasks with an EAGAIN error just as if a non-blocking version of the same operation had returned unsatisfied. This case is not discussed in the POSIX standard and other implementations may have chosen differently.
* Added test case for broadcast to queue with messages pending.Joel Sherrill2000-01-132-0/+14
|
* Changed error checking macros for POSIX.Joel Sherrill2000-01-132-50/+110
|
* POSIX message queues now include complete functionality includingJoel Sherrill2000-01-131-247/+1074
| | | | | | | | | | | | | | | | blocking sends when the queue is full. The SuperCore was enhanced to support blocking on send. The existing POSIX API was debugged and numerous test cases were added to psxmsgq01 by Jennifer Averett. SuperCore enhancements and resulting modifications to other APIs were done by Joel. There is one significant point of interpretation for the POSIX API. What happens to threads already blocked on a message queue when the mode of that same message queue is changed from blocking to non-blocking? We decided to unblock all waiting tasks with an EAGAIN error just as if a non-blocking version of the same operation had returned unsatisfied. This case is not discussed in the POSIX standard and other implementations may have chosen differently.
* Added start and end herald.Jennifer Averett2000-01-132-2/+6
|
* This test was enhanced to test for the case in sigtimedwait() where itJoel Sherrill2000-01-112-0/+32
| | | | | | | must deal with a pending process oriented signal. Prior to the addition of this testcase, sigtimedwait() did not return properly when a process oriented signal was pending. The problem was reported by Wayne Bullaughey <wayneb@cacdsp.com>.
* Patch from Jay Kulpinski <jskulpin@eng01.gdds.com> to make sureJoel Sherrill2000-01-101-1/+1
| | | | RTEMS_TM27 is defined before the bsp.h is included.
* Initialize the attributes structure. Random data was causing the testJoel Sherrill2000-01-061-0/+2
| | | | to fail sporadically.
* Fixed comment.Joel Sherrill2000-01-061-2/+2
|
* Updated to reflect a time that had previously been left out due toJoel Sherrill2000-01-051-0/+37
| | | | an array sizing coding error.
* Screen updated since test runs.Joel Sherrill2000-01-051-1/+24
|
* Was not actually installing the test.Joel Sherrill2000-01-051-6/+5
|
* Increased stack space.Joel Sherrill2000-01-051-0/+1
|
* Updated to reflect change in object class numbering due to ITRON APIJoel Sherrill2000-01-053-3/+3
| | | | addition.
* Corrected test and screen to reflect implementation working.Joel Sherrill2000-01-052-5/+13
|
* Changed screen to reflect change in object class numbers with ITRONJoel Sherrill2000-01-054-19/+19
| | | | addition.
* Corrected so header message is printed.Joel Sherrill2000-01-052-0/+3
|
* Now print strings -- not error numbers.Joel Sherrill2000-01-051-2/+3
|
* + Added tests for open, close, unlink, and send.Jennifer Averett2000-01-051-53/+223
|
* Fixed warnings.Joel Sherrill2000-01-0412-12/+11
|
* Removed warning.Joel Sherrill2000-01-041-0/+3
|
* Added define to trip items that are private to tm27 in bsp.h.Joel Sherrill2000-01-031-0/+1
|
* + Tests added for mq_open, mq_close, and mq_unlinkJennifer Averett1999-12-232-63/+219
|
* Patch rtems-rc-19991203-9.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill1999-12-212-14/+0
| | | | | | | | | which ontains all what was left over from the other patches (Primarily minor configuration cleanups). To apply: patch -p1 < rtems-rc-19991203-9.diff ./bootstrap
* Patch rtems-rc-19991203-7.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill1999-12-2128-196/+0
| | | | | | | | | which does minor cleanup for Makefile.ams below mptests, which only removes some bogus comments from the Makefile.ams. To apply: patch -p1 < rtems-rc-19991203-8.diff ./bootstrap
* Modifications to avoid having the size of the Buffer_addresses arrayJoel Sherrill1999-12-201-8/+16
| | | | too small when OPERATION_COUNT is less than 10.
* First attempt at adding simple binary semaphore in addition to the currentJoel Sherrill1999-12-135-1/+215
| | | | | "mutex" and counting semaphore. This is at the request of Eric Norum and his EPICS porting effort.
* Corrected order of output.Joel Sherrill1999-12-131-1/+1
|
* Patch rtems-rc-19991123-rc-3.diff from Ralf CorsepiusJoel Sherrill1999-12-031-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | <corsepiu@faw.uni-ulm.de>: The patch below provides * automake support for score/cpu/powerpc * The hack to propagate values from *.cfg to automake configuration * A fix for librdbg/powerpc/mcp750/Makefile.am (Was completely corrupted before) * Fixes some files which apparently where missing in rtems-rc-19991123-rc-2.diff * some minor configuration related patches To apply: rm -rf ./c/src/exec/score/cpu/powerpc/wrap patch -p1 < rtems-rc-19991123-rc-3.diff Attention: c/src/exec/score/cpu/[configure.in|aclocal.m4|configure] should be removed after applying the patch. Modifications had been made to the score/cpu/powerpc directory after the snapshot this was based on. In particular, the mpc750 and other_cpu directories had been renamed to new_exception_processing and old_exception_processing. After this patch was applied, modifications were made to account for this.
* Jennifer added initial test code. Conditional'ed out until she hasJoel Sherrill1999-12-021-0/+130
| | | | the opportunity to work with it.
* Uncommitted remains of a previous patch from Ralf CorsepiusJoel Sherrill1999-11-3013-0/+493
| | | | <corsepiu@faw.uni-ulm.de> which converted fiels to automake.
* Patch rtems-rc-19991123-rc-0.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill1999-11-297-33/+15
| | | | | | | | | | | | | | | | | | | | | | | which (among other things) converted the mptests to automake. SUB_DIRS was used instead of SUBDIRS in some Makefile.ins (apparently a leftover from moving the start* directories) Addtional major bugs: * psxtests/include was empty (incomplete psxtests changes). * bogus handling of *.scn in itrontests (screens/sptests vs. screens/itrontests installation dirs) In addition I have added a few more changes (I couldn't resist) * automake support for itrontests * OPERATION_COUNT support in tmitrontests/ * automake support for tmitrontests * automake suppport for mptests * Some (minor) corrections to several configure.in/Makefile.ams => c/src/tests/ is completly under automake control, now. => we could start to sort out the structural issues with c/src/tests (tests/support, stubdr, tools, get "make dist" working)
* Patch rtems-rc-19991123-rc-0.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>Joel Sherrill1999-11-2442-0/+1794
| | | | which (among other things) converted the mptests to automake.