summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests (unfollow)
Commit message (Collapse)AuthorFilesLines
1998-01-30Big patch form Ralf Corsepius described in this email:Joel Sherrill16-64/+32
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 Sherrill16-16/+16
1997-12-10Modified a lot of files to take a first cut at supporting building fromJoel Sherrill16-16/+64
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-08Fixed typo in the pointer to the license terms.Joel Sherrill178-356/+356
1997-10-08Removed include directory at "build" point and the link of this directoryJoel Sherrill1-2/+2
to lib/include. Went to using a PROJECT_INCLUDE variable.
1997-04-22headers updated to reflect new style copyright notice as partJoel Sherrill178-890/+890
of switching to the modified GNU GPL.
1997-04-18Modified to reflect change from 255 posix priority levels to 254.Joel Sherrill3-6/+6
1997-04-15Added line to install test screens so difftest does not have to haveJoel Sherrill12-0/+24
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 Sherrill3-3/+3
warnings.
1997-04-02corrected printf format to avoid warningJoel Sherrill4-4/+4
1997-04-02initialized variables or removed unused variables to remove warningsJoel Sherrill3-4/+3
1997-04-01This set of changes is the build of what was required to convert toJoel Sherrill16-0/+842
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.
1996-09-18new filesJoel Sherrill3-0/+205
1996-09-12Fixed test to match change to pthread_cond_timedwait which now takes a wallMark Johannes1-26/+32
time. Commented out calls to pthread_cond_wait and pthread_cond_timedwait without the mutex locked before calling.
1996-09-06modified test to take into account change in default value ofJoel Sherrill1-0/+5
inheritsched pthread attribute from implicit to explicit scheduling parameters.
1996-09-05added printf of status when not successfulJoel Sherrill1-1/+3
1996-09-05nanosleep no longer consider a negative value of tv_sec to be an error.Joel Sherrill1-6/+7
Instead it is an indication of a request for a small delay.
1996-08-23Changed all EFAULTS to EINVALsMark Johannes1-14/+20
1996-08-23filled in screenMark Johannes1-0/+11
1996-08-23Filled in screenMark Johannes2-0/+78
1996-08-23Filled in the screenMark Johannes9-0/+479
1996-08-23Added build_time statement to provide a tm for the testMark Johannes1-2/+4
1996-08-23Changed test 5 to test 10 at bottomMark Johannes1-1/+1
1996-08-22Commented out the EINVAL for mutex not acquired befor cond_wait callMark Johannes1-4/+9
1996-08-21updated to support ENOTSUPMark Johannes1-10/+10
1996-08-20Added Einval case for mutex not initializedMark Johannes1-0/+10
1996-08-15init: added tests for pthread_kill and kill errors.Mark Johannes1-32/+186
1996-08-15changed error codeJoel Sherrill1-2/+2
1996-08-15changed error for too many threads to EAGAINJoel Sherrill1-2/+2
1996-08-14pthread_mutex_init returns EAGAIN not ENOMEM when there are too many mutexes.Joel Sherrill1-2/+2
1996-08-14added test cases for NULL being passed to pthread attribute get routinesJoel Sherrill1-0/+20
1996-08-14added test case for pthread_attr_getscope being passed a NULL contentionscopeJoel Sherrill1-0/+4
1996-08-14system.h: added task3 and changed condition variable config to 1Mark Johannes1-1/+6
1996-08-14task3: added to test error case in Wait_support for lock on mutexMark Johannes1-0/+46
1996-08-14init: added error case for wait timedwait, and wait supportMark Johannes1-8/+153
1996-08-14pthread_attr_setscope: returns ENOTSUP not ENOSYS for unsupport scopeJoel Sherrill1-2/+2
1996-08-13task_2: added comments and print statement for task exitMark Johannes1-0/+1
1996-08-13task_1: added comments and print statement for task exitMark Johannes1-0/+5
1996-08-13Init.c: added timewait case, added broadcast caseMark Johannes1-3/+28
1996-08-13corrected problem in which sigtimedwait() was being invoked withJoel Sherrill1-60/+3
the wrong mask. removed code which was commented out. This code was in another test.
1996-08-13chenaged format of outputJoel Sherrill1-2/+6
1996-08-13added include of errno.h so the test can check for EINTR.Joel Sherrill1-0/+1
1996-08-13nanosleep now returns -1 and EINTR when a signal interrupts EINTR.Joel Sherrill1-2/+8
1996-08-12task_1: added to handle cases of waiting tasks on condition variablesMark Johannes1-0/+60
1996-08-12system.h: added protoypes for task and task2, added mutex id, and task idsMark Johannes1-1/+10
1996-08-12Init.c: added cases for signal, wait and broadcastMark Johannes1-7/+26
1996-08-12Task2: new task for broadcast caseMark Johannes1-0/+46
1996-08-12added test cases for clock_getresJoel Sherrill1-9/+27
1996-08-12added test case for stack too largeJoel Sherrill1-0/+7
1996-08-12added test cases for clock_gettime (invalid id), clock_settime (invalid_id),Joel Sherrill1-0/+48
nanosleep (yield cpu), and numerous error cases in nanosleep