How to align ARM BSP .data section on 4K boundary

2017-08-26 Thread Joel Sherrill
Hi Using the shared linkcmds, what's the magic to get .data on a 4K boundary? This is needed for a paravirtualized environment. Thanks. --joel ___ devel mailing list devel@rtems.org http://lists.rtems.org/mailman/listinfo/devel

Re: [PATCH v2] Testsuite for inttypes methods

2017-08-26 Thread Joel Sherrill
On Fri, Aug 25, 2017 at 9:05 AM, Gedare Bloom wrote: > Merge this with the previous commits to only provide 1 single commit > adding this new test. > > On Wed, Aug 23, 2017 at 3:35 PM, Aditya Upadhyay > wrote: > > --- > > testsuites/psxtests/Makefile.am| 5 -- > > testsuite

[PATCH 4/9] covoar: Add information to improve diagnostics.

2017-08-26 Thread Cillian O'Donnell
From: Hermann Felbinger --- tester/covoar/CoverageMap.cc | 7 --- tester/covoar/CoverageMap.h | 5 +++-- tester/covoar/CoverageMapBase.cc | 6 -- tester/covoar/CoverageMapBase.h | 11 +-- tester/covoar/DesiredSymbols.cc | 25 ++--- tester/co

[PATCH 5/9] covoar/ObjdumpProcessor.cc: Remove jump tables from the end of symbols.

2017-08-26 Thread Cillian O'Donnell
Some tests objdumps have jump tables added to the end of them causing the same symbols to have different sizes when processed. This removes them and their associated errors. --- tester/covoar/ObjdumpProcessor.cc | 37 - 1 file changed, 36 insertions(+), 1 deleti

[PATCH 9/9] covoar: Remove config file and test critical options are valid.

2017-08-26 Thread Cillian O'Donnell
--- tester/covoar/covoar.cc | 164 +++- tester/covoar/wscript | 1 - 2 files changed, 63 insertions(+), 102 deletions(-) diff --git a/tester/covoar/covoar.cc b/tester/covoar/covoar.cc index 005cb8e..5b55720 100644 --- a/tester/covoar/covoar.cc +++ b

[PATCH 0/9] *** Covoar Improvements v2 ***

2017-08-26 Thread Cillian O'Donnell
*** As the full coverage analysis tools integrated with RTEMS Tester is not ready yet, I've cherry picked these standalone fixes to covoar. This includes work from myself and the previous 2 students that worked on the project in 2014 and 2015. Thanks for the review Chris, formatting change imp

[PATCH 2/9] covoar/qemu-traces.h: Change to match current couverture-qemu file.

2017-08-26 Thread Cillian O'Donnell
From: Fabien Chouteau --- tester/covoar/qemu-traces.h | 76 +++-- 1 file changed, 39 insertions(+), 37 deletions(-) diff --git a/tester/covoar/qemu-traces.h b/tester/covoar/qemu-traces.h index 7e37840..1b3d118 100644 --- a/tester/covoar/qemu-traces.h +++

[PATCH 8/9] covoar/CoverageReaderQEMU.cc: Remove trace block matching check.

2017-08-26 Thread Cillian O'Donnell
This removes the 'Trace block inconsistent with coverage map' check as it was deemed to be too restrictive and not neccessary. --- tester/covoar/CoverageReaderQEMU.cc | 15 --- 1 file changed, 15 deletions(-) diff --git a/tester/covoar/CoverageReaderQEMU.cc b/tester/covoar/CoverageRe

[PATCH 6/9] covoar/wscript: Add paths to rtemstoolkit to build.

2017-08-26 Thread Cillian O'Donnell
From: Krzysztof Miesowicz Co-Author: Cillian O'Donnell --- tester/covoar/wscript | 18 +- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/tester/covoar/wscript b/tester/covoar/wscript index 68184a7..d121a21 100644 --- a/tester/covoar/wscript +++ b/tester/covoar/ws

[PATCH 7/9] covoar: Use rld tempfile and add signals to clean up in event of crash.

2017-08-26 Thread Cillian O'Donnell
Use rld tempfile for temporary files and add fatal signal handling to clean them up in the event of a crash. --- tester/covoar/ObjdumpProcessor.cc | 168 +--- tester/covoar/ObjdumpProcessor.h| 30 --- tester/covoar/TraceConverter.cc | 60 ++--

[PATCH 1/9] rtemstoolkit/host.py: Change option to search parent directory in Python3.

2017-08-26 Thread Cillian O'Donnell
This works in Python2.7 and Python3.5. Python2 __import__ searches relative and absolute paths by default. Python3 searches only absolute paths as default. The option change searches 1 parent directory relative to the calling function and has the same meaning in Python2 and Python3. --- rtemstoolk