summaryrefslogtreecommitdiffstats
path: root/c/src/tests/sptests (unfollow)
Commit message (Collapse)AuthorFilesLines
1998-06-12Patch from Eric Norum to avoid printing from context switch user extension.Joel Sherrill3-7/+37
The array is too long and needs to be shortened.
1998-05-04Fixed prototype of Fatal_Extension.Joel Sherrill2-18/+15
Fixed interface to cofndefs.h for initial extension set.
1998-04-27Added CONFIGURE_EXTRA_TASK_STACKS definition to make memory requirementsJoel Sherrill15-0/+30
more accurate.
1998-04-15Initial sets of user extensions now have memory allocated on the flyJoel Sherrill1-2/+1
for them.
1998-04-06Increased stack size so test would run in debug mode.Joel Sherrill4-4/+5
1998-03-24Rename hppa1_1 to hppa1.1 and switched to using __XXX__ macros forJoel Sherrill1-7/+7
the CPU family name constants.
1998-03-03Corrected to indicate test cases which were skipped.Joel Sherrill1-2/+2
1998-02-20Modified to reflect new restrictions on mutex being released.Joel Sherrill1-1/+1
1998-02-20Removed extra line.Joel Sherrill1-1/+0
1998-02-20Increased stack space to let test run to completion.Joel Sherrill1-4/+4
1998-02-19Increased stack space of tasks.Joel Sherrill1-1/+1
1998-02-19Increased stack size of initialization task.Joel Sherrill1-0/+1
1998-02-17updated copyright to 1998Joel Sherrill167-167/+167
1998-02-17updated copyright to 1998Joel Sherrill1-1/+1
1998-01-30Big patch form Ralf Corsepius described in this email:Joel Sherrill26-104/+52
Here is the result of my nightly work to get RTEMS_ROOT=$srcdir working with different shells and relative/absolute paths. What I did is relatively simple in principle: Instead of setting RTEMS_ROOT in configure.in and then let configure substitute @RTEMS_ROOT@ inside the Makefiles, I now let each Makefile set RTEMS_ROOT from each Makefile's @top_srcdir@ value. The difference is subtile, but with enormous side effects: - If RTEMS_ROOT is set in configure, then the same single value will be propagated to all Makefiles. This breaks using relative paths, as the relative path to the root of the source tree is used inside of all subdirectory Makefiles. - Now each Makefile.in sets RTEMS_ROOT = @top_srcdir@. top_srcdir is computed individually by configure for each single Makefile.in, hereby receiving the correct value, no matter if relative or absolute paths are used. To get this working, I needed to remove setting RTEMS_ROOT from target.cfg.in, because this overrides the value of RTEMS_ROOT from each individual Makefile. Furthermore, I removed RTEMS_CUSTOM from the Makefiles and replaced all "include $(RTEMS_CUSTOM)" directives with"include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP)". Perhaps you don't like this, but I think, to have one variable less is clearer and easier to understand than having several variables refering to the next one. I enclose a small patch to this mail, which - fixes the config.h problem (to finally clearify misunderstands) - removes assignment/subsitution of RTEMS_ROOT from configure.in - contains a workaround for the application Makefile's RTEMS_ROOT problem (reported by Eric) - removes some unused lines from the toplevel Makefile.in - removes assignment of RTEMS_ROOT from make/target.cfg.in
1998-01-20Removed CONFIG_DIR and PROJECT_HOME directories.Joel Sherrill26-26/+26
1997-12-10Modified a lot of files to take a first cut at supporting building fromJoel Sherrill26-26/+104
any directory in the build tree. The only variable which must be set before the command "gmake" is invoked is RTEMS_BSP (e.g. RTEMS_BSP=erc32).
1997-10-21Added test case for rtems_interrupt_catch checking that the pointerJoel Sherrill2-1/+11
for the returned old_isr_handler was non-NULL.
1997-10-08Fixed typo in the pointer to the license terms.Joel Sherrill168-336/+336
1997-07-31Added support for rtems_message_queue_get_number_pending.Joel Sherrill4-0/+21
1997-07-09Used macro instead of hard coded number.Joel Sherrill1-1/+1
1997-04-22headers updated to reflect new style copyright notice as partJoel Sherrill168-840/+840
of switching to the modified GNU GPL.
1997-04-15Added line to install test screens so difftest does not have to haveJoel Sherrill24-0/+48
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.
1997-04-07corrected printf specifications and added casts as necessary to eliminateJoel Sherrill4-69/+76
warnings.
1997-04-07added ifdef to avoid warning for unused variable.Joel Sherrill1-2/+6
1997-04-07corrected integer only definitions of "FP CHECK" routines to eliminateJoel Sherrill1-3/+10
warnings.
1997-04-02corrected printf format to avoid warningJoel Sherrill3-7/+7
1997-04-01This set of changes is the build of what was required to convert toJoel Sherrill26-0/+1517
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.
1997-01-08_CPU_Trap_Table_area is now conditional based on whether or notJoel Sherrill1-2/+5
the application requires rtems to allocate a trap table
1996-09-18added castJoel Sherrill1-1/+1
1996-09-17extended Task_id and Task_name arrays to avoid indexing past end of array.Joel Sherrill1-2/+2
1996-06-13Added _Thread_Do_post_task_switch_extension variable.Joel Sherrill1-0/+1
1996-06-05added cpu_time_budget field to Thread_Control and removed the global variableJoel Sherrill1-1/+0
_Thread_Ticks_remaining_in_timeslice.
1996-06-03updated screenJoel Sherrill5-40/+34
1996-05-31renamed _TOD_Ticks_since_boot as _Watchdog_Ticks_since_boot so the WatchdogJoel Sherrill1-1/+1
Handler could timestamp the starting and stopping of timers. Since TOD is built on top of Watchdog, this avoided a circular dependency.
1996-05-29tests now specify whether using posix initialization threads tableJoel Sherrill25-0/+50
or rtems initialization table in configuration table
1996-05-24updates from Tony Bennett to correct calling sequences.Joel Sherrill2-0/+2
1996-04-22updates from Tony BennettJoel Sherrill2-2/+4
1996-04-22addition of optional user provided stack allocator means that we can notJoel Sherrill1-14/+27
reliably produce the "insufficient memory for stack space" error if this extension is configured.
1996-02-22The name of the test support routine pause was changed to rtems_test_pauseJoel Sherrill10-36/+32
to avoid conflict with the standard POSIX routine pause(2).
1996-02-21Dispersal of internal thread handler resulted in removal of someJoel Sherrill1-16/+11
variables and renaming of others.
1996-02-13removed post switch extensionJoel Sherrill3-3/+0
1996-02-09As part of implementing the new isr synchronization algorithm using aJoel Sherrill1-1/+1
single enumerated set of states the set of event manager variables changed.
1996-01-19Added RTEMS API control structure to per task memory usage macro.Joel Sherrill1-1/+2
1996-01-19Increased stack size.Joel Sherrill2-2/+2
1996-01-17increased stack spaceJoel Sherrill2-2/+2
1996-01-15updates from Tony Bennett for PA and UNIX portsJoel Sherrill2-4/+4
1995-10-31typos fixedJoel Sherrill1-0/+5
1995-10-30SPARC port passes all testsJoel Sherrill10-17/+48
1995-10-06fixed missing CVS IDsJoel Sherrill5-5/+5