summaryrefslogtreecommitdiffstats
path: root/c/src/tests (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Corrected incorrect settings for locations of psx and sp test screens.Joel Sherrill1997-04-181-2/+2
|
* Added line to install test screens so difftest does not have to haveJoel Sherrill1997-04-1565-7/+137
| | | | | | a path back into the source tree. This would be better for binary distributions as well since you now have the correct output at the install point.
* enabled floating point and fixed confdef reference to initializationJoel Sherrill1997-04-094-5/+9
| | | | tasks table.
* new testJoel Sherrill1997-04-0914-0/+862
|
* added cpuuse and rtmonuseJoel Sherrill1997-04-091-1/+1
|
* corrected printf specifications and added casts as necessary to eliminateJoel Sherrill1997-04-077-72/+79
| | | | warnings.
* added ifdef to avoid warning for unused variable.Joel Sherrill1997-04-071-2/+6
|
* corrected integer only definitions of "FP CHECK" routines to eliminateJoel Sherrill1997-04-071-3/+10
| | | | warnings.
* corrected one of the references to an environment variable whichJoel Sherrill1997-04-021-1/+1
| | | | is no longer used since autoconf is in place.
* corrected printf format to avoid warningJoel Sherrill1997-04-027-11/+11
|
* initialized variables or removed unused variables to remove warningsJoel Sherrill1997-04-023-4/+3
|
* This set of changes is the build of what was required to convert toJoel Sherrill1997-04-01136-0/+6948
| | | | | | | | | | | | | | | | | | | | GNU autoconf. This is the first large step in allowing an RTEMS user to perform a one-tree build (per crossgcc FAQ) including RTEMS in the build process. With this change RTEMS is configured in built in the same style as the GNU tools, yet retains the basic structure of its traditional Makefiles (ala Tony Bennett). Jiri Gaisler (jgais@wd.estec.esa.nl) deserves (and received) a big thank you for doing this. There are still issues to be resolved but as of this commit, all target which can be built on a linux host have been using a modified version of the source Jiri submitted. This source was merged and most targets built in the tree before this commit. There are some issues which remain to be resolved but they are primarily related to host OS dependencies, script issues, the use of gawk for hack_specs, and the dependence on gcc snapshots. These will be resolved.
* added support for posix testsJoel Sherrill1997-03-081-1/+3
|
* Made stopping for the pause an option which can be configured in theJoel Sherrill1997-01-291-0/+12
| | | | targopts.h file.
* _CPU_Trap_Table_area is now conditional based on whether or notJoel Sherrill1997-01-081-2/+5
| | | | the application requires rtems to allocate a trap table
* new filesJoel Sherrill1996-09-183-0/+205
|
* added castJoel Sherrill1996-09-181-1/+1
|
* address arithmetic changed to be more portableJoel Sherrill1996-09-181-3/+7
|
* new test submitted by Craig Lebakken (lebakken@minn.net) and Derrick OstertagJoel Sherrill1996-09-183-0/+230
| | | | (ostertag@transition.com)
* extended Task_id and Task_name arrays to avoid indexing past end of array.Joel Sherrill1996-09-171-2/+2
|
* Fixed test to match change to pthread_cond_timedwait which now takes a wallMark Johannes1996-09-121-26/+32
| | | | | | | time. Commented out calls to pthread_cond_wait and pthread_cond_timedwait without the mutex locked before calling.
* modified test to take into account change in default value ofJoel Sherrill1996-09-061-0/+5
| | | | | inheritsched pthread attribute from implicit to explicit scheduling parameters.
* added printf of status when not successfulJoel Sherrill1996-09-051-1/+3
|
* nanosleep no longer consider a negative value of tv_sec to be an error.Joel Sherrill1996-09-051-6/+7
| | | | Instead it is an indication of a request for a small delay.
* Changed all EFAULTS to EINVALsMark Johannes1996-08-231-14/+20
|
* filled in screenMark Johannes1996-08-231-0/+11
|
* Filled in screenMark Johannes1996-08-232-0/+78
|
* Filled in the screenMark Johannes1996-08-239-0/+479
|
* Added build_time statement to provide a tm for the testMark Johannes1996-08-231-2/+4
|
* Changed test 5 to test 10 at bottomMark Johannes1996-08-231-1/+1
|
* Commented out the EINVAL for mutex not acquired befor cond_wait callMark Johannes1996-08-221-4/+9
|
* updated to support ENOTSUPMark Johannes1996-08-211-10/+10
|
* Added Einval case for mutex not initializedMark Johannes1996-08-201-0/+10
|
* init: added tests for pthread_kill and kill errors.Mark Johannes1996-08-151-32/+186
|
* changed error codeJoel Sherrill1996-08-151-2/+2
|
* changed error for too many threads to EAGAINJoel Sherrill1996-08-151-2/+2
|
* pthread_mutex_init returns EAGAIN not ENOMEM when there are too many mutexes.Joel Sherrill1996-08-141-2/+2
|
* added test cases for NULL being passed to pthread attribute get routinesJoel Sherrill1996-08-141-0/+20
|
* added test case for pthread_attr_getscope being passed a NULL contentionscopeJoel Sherrill1996-08-141-0/+4
|
* system.h: added task3 and changed condition variable config to 1Mark Johannes1996-08-141-1/+6
|
* task3: added to test error case in Wait_support for lock on mutexMark Johannes1996-08-141-0/+46
|
* init: added error case for wait timedwait, and wait supportMark Johannes1996-08-141-8/+153
|
* pthread_attr_setscope: returns ENOTSUP not ENOSYS for unsupport scopeJoel Sherrill1996-08-141-2/+2
|
* task_2: added comments and print statement for task exitMark Johannes1996-08-131-0/+1
|
* task_1: added comments and print statement for task exitMark Johannes1996-08-131-0/+5
|
* Init.c: added timewait case, added broadcast caseMark Johannes1996-08-131-3/+28
|
* corrected problem in which sigtimedwait() was being invoked withJoel Sherrill1996-08-131-60/+3
| | | | | | the wrong mask. removed code which was commented out. This code was in another test.
* chenaged format of outputJoel Sherrill1996-08-131-2/+6
|
* added include of errno.h so the test can check for EINTR.Joel Sherrill1996-08-131-0/+1
|
* nanosleep now returns -1 and EINTR when a signal interrupts EINTR.Joel Sherrill1996-08-131-2/+8
|