summaryrefslogtreecommitdiffstats
path: root/testsuites (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-12-21spcxx01: Add test caseSebastian Huber1-0/+10
2018-12-21Add aligned_alloc() and memalign()Sebastian Huber5-0/+99
Ensure that the C++17 aligned new operator works. Close #3666.
2018-12-20psxhdrs: Changing copyright license to BSD-2-ClauseJacob Shin139-1535/+3062
2018-12-18score: Fix per-CPU data allocationSebastian Huber7-1/+132
Allocate the per-CPU data for secondary processors directly from the heap areas before heap initialization and not via _Workspace_Allocate_aligned(). This avoids dependency on the workspace allocator. It fixes also a problem on some platforms (e.g. QorIQ) where at this early point in the system initialization the top of the RAM is used by low-level startup code on secondary processors (boot pages). Update #3507.
2018-12-14psxhdrs: Update licenses to 2-Clause BSD (GCI 2018)Marçal Comajoan Cara12-132/+264
Updated licenses of the files I wrote to the 2-Clause BSD License. This work was part of GCI 2018.
2018-12-14Some minor fix on psxhdrsHimanshu404-18/+4
2018-12-14psxhdrs: Changed the copyright license to BSD-2-Clause (GCI 2018)Himanshu40218-2663/+5067
2018-12-14score: Static Objects_Information initializationSebastian Huber10-125/+339
Statically allocate the objects information together with the initial set of objects either via <rtems/confdefs.h>. Provide default object informations with zero objects via librtemscpu.a. This greatly simplifies the workspace size estimate. RTEMS applications which do not use the unlimited objects option are easier to debug since all objects reside now in statically allocated objects of the right types. Close #3621.
2018-12-14score: Remove Objects_Information::auto_extendSebastian Huber1-4/+4
Use Objects_Information::objects_per_block to provide this information. Add and use _Objects_Is_auto_extend(). Update #3621.
2018-12-13psxhdrs: Changed the Copyright license to BSD-2-Clause .Pritish Jain195-2935/+5080
The Copyright clause has been changed to BSD-2-Clause for all the tests in the header files math.h , utime.h , fmtmsg.h and sys/ipc.h .
2018-12-13psxhdrs: Add POSIX API Signature Compliance Tests for sys/msg.h (GCI 2018)Jacob Shin5-0/+219
2018-12-13psxhdrs: Add POSIX API Signature Compliance Tests for sys/select.h (GCI 2018)Jacob Shin7-1/+304
The Google Code-In finished before I could submit this, so I thought I would submit this instead of letting it go to waste.
2018-12-13psxhdrs: Add POSIX Signature Compliance Test for sys/shm.h (GCI 2018)ABR290B5-0/+151
2018-12-13POSIX Signature Compliance Test for utmpx.h (GCI2018)ABR290B7-0/+218
2018-12-13POSIX Signature Compliance Test for sys/statvfs.h (GCI 2018)ABR290B3-0/+76
2018-12-12psxhdrs: Add POSIX API Signature Compliance Tests for net/if.hJacob Shin5-0/+195
2018-12-11psxhdrs/: Changed boilerplate licenses to BSD-2 (GCI 2018)zehata187-2149/+4205
2018-12-11psxhdrs: POSIX API Signature Compliance Test for setjmp.h (GCI2018)ABR290B5-1/+146
2018-12-11psxhdrs: Implement POSIX API Signature Compliance Tests for poll.h (GCI 2018)Marçal Comajoan Cara2-0/+51
poll.h implements poll() which is not supported by RTEMS according to the RTEMS POSIX 1003.1 Compliance Guide. See #3657. This work was part of GCI 2018.
2018-12-11psxhdrs: Add POSIX Compliance Tests for wordexp.h (GCI 2018)Pritish Jain3-0/+101
2018-12-11psxhdrs: Fix compile errorsSebastian Huber8-16/+16
2018-12-10psxhdrs: Add POSIX API Signature Compliance Tests for pwd.h (GCI 2018)Himanshu408-0/+295
2018-12-10psxhdrs: Add POSIX API Signature Compliance Tests for fcntl.h (GCI 2018)Zenon4-0/+151
2018-12-10psxtests/Makefile.am: Add fcntl methods missed in previous commitJoel Sherrill1-0/+6
2018-12-10psxtests/Makefile.am: Correct spacingJoel Sherrill1-39/+39
2018-12-10psxhdrs: Add POSIX API Signature Compliance Tests for sys/resource.h (GCI 2018)Jacob Shin6-1/+202
2018-12-09psxhdrs: Implement POSIX API Signature Compliance Tests for sys/times.h (GCI ↵Marçal Comajoan Cara2-1/+39
2018)
2018-12-09psxhdrs: Add POSIX Conformance Test for sys/ipc.h (GCI 2018)Shashvat Jain2-1/+41
Test for this file has been added but are disabled due to the absence of header file sys/ipc.h. see Ticket #3650
2018-12-09psxhdrs: Add POSIX API Signature Compliance Tests for sys/stat.h (GCI 2018)Jacob Shin17-6/+644
2018-12-09psxhdrs: Added POSIX API Signature Compliance Tests for threads.h (GCI 2018)Himanshu4026-0/+1069
2018-12-09psxhdrs: Add POSIX API Signature Compliance Tests for stdlib.h (GCI 2018)Jacob Shin66-2/+2466
2018-12-08psxhdrs: POSIX Signature Test for syslog.h (GCI2018)ABR290B5-0/+140
2018-12-08psxhdrs: added POSIX API Signature Compliance Tests for libgen.h (GCI 2018)Himanshu403-1/+79
2018-12-08psxhdrs: Added POSIX Compliance Test for wchar.h (GCI 2018)zehata83-1/+3273
2018-12-08Implement POSIX API Signature Compliance Tests for stddef.h (GCI 2018)Marçal Comajoan Cara2-0/+39
2018-12-08POSIX Signature Test for arpa/inet.h (GCI2018)ABR290B5-1/+161
2018-12-07psxhdrs: POSIX API Signature Compliance Tests for netdb.h (GCI 2018)Himanshu4026-1/+1025
2018-12-07Implement POSIX API Signature Compliance Tests for uchar.hMarçal Comajoan Cara5-0/+168
This header file is C11 and not currently supported by RTEMS. See #3643. This work was part of GCI 2018.
2018-12-07score: Remove Objects_Information::maximumSebastian Huber1-34/+38
This information is already present in Objects_Information::maximum_id. Add and use _Objects_Get_maximum_index(). Update #3621.
2018-12-07score: Optimize object lookupSebastian Huber1-20/+218
Use the maximum ID for the ID to object translation. Using the maximum ID gets rid of an additional load from the object information in _Objects_Get(). In addition, object lookups fail for every ID in case the object information is cleared to zero. This makes it a bit more robust during system startup (see new tests in spconfig02). The local table no longer needs a NULL pointer entry at array index zero. Adjust all the object iteration loops accordingly. Remove Objects_Information::minimum_id since it contains only redundant information. Add _Objects_Get_minimum_id() to get the minimum ID. Update #3621.
2018-12-07score: Remove Objects_Information::is_stringSebastian Huber1-1/+0
Use Objects_Information::name_length to store this information. Update #3621.
2018-12-07rtems: Add rtems_scheduler_get_maximum_priority()Sebastian Huber1-1/+25
Update #3636.
2018-12-07score: Avoid sbintime_t in API headersSebastian Huber2-0/+2
The sbintime_t is a non-POSIX type and not visible if strict standard options are selected. Move implementation details from <rtems/score/timestamp.h> to <rtems/score/timestampimpl.h>. Update #3598.
2018-12-07psxtimes01: Fix sporadic failuresSebastian Huber1-1/+1
It is not enough to just wait for at least the first clock tick to get non-zero times. In _times() we round down, so the uptime must be greater than or equal to the clock tick interval. We do not know when the timecounter is started during the system initialization. We have to wait until at least two ticks happened.
2018-12-07tests: Fix rtems_test_spin_until_next_tick()Sebastian Huber3-15/+13
This bug surfaced due to sporadic failures in sptimecounter02. Adjust rtems_test_spin_for_ticks() to include the partial tick in the argument value.
2018-12-06psxtests/Makefile.am: Fix ticket number for ucontext.hJoel Sherrill1-4/+4
2018-12-06psxhdrs: Add POSIX API Signature Compliance Tests for ucontext.h (GCI 2018)Jacob Shin5-1/+197
2018-12-06Implement POSIX API Signature Compliance Tests for inttypes.hMarçal Comajoan Cara7-1/+243
This work was part of GCI 2018
2018-12-06psxhdrs:Add POSIX Conformance Test for fmtmsg.h (GCI 2018)Shashvat Jain2-19/+25
2018-12-06psxhdrs:Add POSIX Conformance Test for fmtmsg.h (GCI 2018)Shashvat Jain2-1/+42
Includes test fmtmsg which has been disabled due to the absence of header file fmtmsg.h . Updates #3639