diff options
| author | Khem Raj <kraj@mvista.com> | 2009-03-16 22:18:05 +0000 |
|---|---|---|
| committer | Khem Raj <kraj@mvista.com> | 2009-03-16 22:18:05 +0000 |
| commit | dd18c96de380689533d5d0c71f487d32cc2f75fb (patch) | |
| tree | b483dcc832de1d4a3fb0e9b2d8404759e38ac7e1 /test/stdlib | |
| parent | d05d1f200b65042c806466baf7e30e1885ab56dc (diff) | |
| download | uClibc-alpine-dd18c96de380689533d5d0c71f487d32cc2f75fb.tar.bz2 uClibc-alpine-dd18c96de380689533d5d0c71f487d32cc2f75fb.tar.xz | |
Merged revisions 25669-25670,25673-25674 via svnmerge from
svn+ssh://svn.uclibc.org/svn/trunk/uClibc
........
r25669 | vapier | 2009-03-15 23:14:34 -0700 (Sun, 15 Mar 2009) | 1 line
import user.h from the kernel as it is no longer exported by the kernel
........
r25670 | vapier | 2009-03-15 23:16:15 -0700 (Sun, 15 Mar 2009) | 1 line
enable mprotect() regardless of MMU as some systems have MPUs which allows memory protection
........
r25673 | carmelo | 2009-03-16 06:33:27 -0700 (Mon, 16 Mar 2009) | 2 lines
Added string.h header for strerr prototype.
........
r25674 | carmelo | 2009-03-16 06:36:39 -0700 (Mon, 16 Mar 2009) | 10 lines
Fixed makefiles inclusion flow to pass actual configuration variable values.
Test build system modified to be similar to uClibc one:
* test custom logic moved from Makefile to a new Makefile.in (to be included
by Makefile).
* Makefile same for all tests and just used for including all other needed
makefiles.
Signed-off-by: Salvatore Cro <salvatore.cro@st.com>
Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
........
Diffstat (limited to 'test/stdlib')
| -rw-r--r-- | test/stdlib/Makefile | 8 | ||||
| -rw-r--r-- | test/stdlib/Makefile.in | 7 |
2 files changed, 10 insertions, 5 deletions
diff --git a/test/stdlib/Makefile b/test/stdlib/Makefile index efec56d70..f8a40384b 100644 --- a/test/stdlib/Makefile +++ b/test/stdlib/Makefile @@ -1,9 +1,7 @@ # uClibc stdlib tests # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. +top_builddir=../../ +include ../Rules.mak +-include Makefile.in include ../Test.mak - -DODIFF_qsort := 1 -DODIFF_testatexit := 1 -DODIFF_teston_exit := 1 -DODIFF_teststrtol := 1 diff --git a/test/stdlib/Makefile.in b/test/stdlib/Makefile.in new file mode 100644 index 000000000..0bb06975e --- /dev/null +++ b/test/stdlib/Makefile.in @@ -0,0 +1,7 @@ +# uClibc stdlib tests +# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. + +DODIFF_qsort := 1 +DODIFF_testatexit := 1 +DODIFF_teston_exit := 1 +DODIFF_teststrtol := 1 |
