summaryrefslogtreecommitdiffstats
path: root/c/src/tests/psxtests/psx01 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:Joel Sherrill1999-04-191-1/+1
| | | | | | | | | | | | | | This one is an enhancement to acpolish. It replaces some Makefile variables by others variable in Makefile.ins (tries to use unique name for some variables). It therefore eases parsing Makefile.ins for further automatic Makefile.in conversions in future. To apply: cd <rtems-source-tree> sh <path-to>/rtems-rc-19990407-8.sh ./autogen
* Towards automake XI patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:Joel Sherrill1999-03-191-3/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch is the most scary of all proposals I've been mailing to you this week until now. It consists of 3 parts: 1. a patch 2. a perl script (acpolish) 3. a shell script wrapper to invoke the perl-script. The perl-script reads in each Makefile.in and modifies them ("polishes/beautifies" them :-). These modifications are not easy to describe: Basically, it hard-codes some automake Makefile-variables and rules into RTEMS autoconf-Makefile.ins (Note: autoconf vs. automake!!) and converts some settings/variables to configure scripts' requirements (Yes, plural). E.g. it adds the automake standard variables $top_builddir and $subdir, adds dependency rules for automatic re-generation of Makefiles from Makefile.in, adds support variables for relative paths to multiple configure scripts etc. The patch is a one-line patch to enable the support of the new features added by acpolish. The shell script is a wrapper which pokes around inside of the source tree for Makefile.ins and invokes acpolish on all autoconf-Makefile.ins. acpolish is designed to be able to run several times on the same Makefile.in and may once become a more general tool to convert RTEMS Makefile.in to automake. Therefore, I'd like to keep it inside of source tree. (e.g. as contrib/acpolish or c/update-tools/acpolish). However, it doesn't make sense to export it outside of RTEMS. To apply this: cd <source-tree> patch -p1 -E < <path-to-patch>/rtems-rc-19990318-1.diff tar xzvf <path-to>/rtems-rc-polish.tar.gz ./rtems-polish.sh ./autogen Note: The path contrib/acpolish is hard-coded into rtems-polish.sh, if you decide to put it in an alternative place, please modify rtems-polish.sh to reflect this change. Later: cvs rm make/rtems.cfg (It isn't used anymore) cvs add contrib cvs add contrib/acpolish cvs commit I've tested this intensively, but naturally I can't exclude bugs. Ralf. PS.: Most probably, this is the last "Towards automake" patch. The next one probably will be a real automake patch.
* Part of the automake VI patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de>:Joel Sherrill1999-02-181-1/+3
| | | | | | | | | | | | | | | | > 5) rtems-rc-19990202-1.diff/reorg-install.sh > > reorg-install.sh fixes a Makefile variable name clash of RTEMS > configuration files and automake/autoconf standards. > Until now, RTEMS used $(INSTALL) for install-if-change. Automake and > autoconf use $(INSTALL) for a bsd-compatible install. As > install-if-change and bsd-install are not compatible, I renamed all > references to install-if-changed to $(INSTALL_CHANGED) and used > $(INSTALL) for bsd-install (==automake/autoconf standard). When > automake will be introduced install-if-change will probably be replaced > by $(INSTALL) and therefore will slowly vanish. For the moment, this > patch fixes a very nasty problem which prevents adding any automake file > until now (There are still more).
* Updated scn files to match present expected test output.Jennifer Averett1998-12-031-1/+1
|
* updated copyright to 1998Joel Sherrill1998-02-173-3/+3
|
* Big patch form Ralf Corsepius described in this email:Joel Sherrill1998-01-301-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Removed CONFIG_DIR and PROJECT_HOME directories.Joel Sherrill1998-01-201-1/+1
|
* Modified a lot of files to take a first cut at supporting building fromJoel Sherrill1997-12-101-1/+4
| | | | | 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).
* Fixed typo in the pointer to the license terms.Joel Sherrill1997-10-083-6/+6
|
* headers updated to reflect new style copyright notice as partJoel Sherrill1997-04-223-15/+15
| | | | of switching to the modified GNU GPL.
* Modified to reflect change from 255 posix priority levels to 254.Joel Sherrill1997-04-181-1/+1
|
* Added line to install test screens so difftest does not have to haveJoel Sherrill1997-04-151-0/+2
| | | | | | 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.
* This set of changes is the build of what was required to convert toJoel Sherrill1997-04-011-0/+60
| | | | | | | | | | | | | | | | | | | | 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.
* 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.
* Filled in the screenMark Johannes1996-08-231-0/+46
|
* Added build_time statement to provide a tm for the testMark Johannes1996-08-231-2/+4
|
* changed error for too many threads to EAGAINJoel Sherrill1996-08-151-2/+2
|
* added test cases for clock_getresJoel Sherrill1996-08-121-9/+27
|
* added test cases for clock_gettime (invalid id), clock_settime (invalid_id),Joel Sherrill1996-08-121-0/+48
| | | | nanosleep (yield cpu), and numerous error cases in nanosleep
* added test case for non-NULL parameter to time()Joel Sherrill1996-08-121-0/+6
|
* lowered maximum number of threads to 2 to make test case easier.Joel Sherrill1996-08-091-0/+3
| | | | include sched.h so test can invoke scheduler routines.
* added test case for sched_yield.Joel Sherrill1996-08-091-6/+14
| | | | changed format of some output.
* added test cases for errors in sched_get_priority_min andJoel Sherrill1996-08-091-5/+30
| | | | | | sched_get_priority_max. added test case for sched_yield.
* added complete test cases for pthread_once.Joel Sherrill1996-08-083-16/+44
|
* added more error cases to complete testing of pthread_equal whenJoel Sherrill1996-08-071-0/+8
| | | | RTEMS_DEBUG is enabled.
* moved the time macros to pmacros.h.Joel Sherrill1996-06-103-38/+4
|
* added include of <sched.h> and fixed warningsJoel Sherrill1996-06-061-2/+3
|
* added test case for sched_get_priority_min, sched_get_priority_max,Joel Sherrill1996-06-041-0/+23
| | | | and sched_rr_get_interval.
* added basic test cases for pthread_self and pthread_equalJoel Sherrill1996-06-043-14/+28
|
* added test code for return of remaining time from sleep().Joel Sherrill1996-06-031-2/+8
|
* added test case for nanosleep filling in the time remaining structure.Joel Sherrill1996-06-031-0/+1
|
* added test code for nanosleep and return code from sleep.Joel Sherrill1996-06-031-2/+27
|
* added code to test clock and time related functionality.Joel Sherrill1996-05-302-17/+63
|
* tests now specify whether using posix initialization threads tableJoel Sherrill1996-05-292-5/+3
| | | | or rtems initialization table in configuration table
* simple version of test which shows pthread_create, pthread_exit, and exitJoel Sherrill1996-05-293-4/+19
| | | | are basically working. This test will be enhanced further.
* Gutted test of rtems api calls and added comments to indicate what the testJoel Sherrill1996-05-293-77/+31
| | | | should do in their place. It now compiles and links.
* new fileJoel Sherrill1996-05-241-0/+50
|
* new filesJoel Sherrill1996-05-243-4/+111
|
* new fileMark Johannes1996-05-241-0/+22