<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Generator" content="Microsoft Word 14 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph
        {mso-style-priority:34;
        margin-top:0cm;
        margin-right:0cm;
        margin-bottom:0cm;
        margin-left:36.0pt;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:70.85pt 70.85pt 2.0cm 70.85pt;}
div.WordSection1
        {page:WordSection1;}
/* List Definitions */
@list l0
        {mso-list-id:2103990557;
        mso-list-type:hybrid;
        mso-list-template-ids:1261192716 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
@list l0:level1
        {mso-level-tab-stop:none;
        mso-level-number-position:left;
        text-indent:-18.0pt;}
@list l0:level2
        {mso-level-number-format:alpha-lower;
        mso-level-tab-stop:none;
        mso-level-number-position:left;
        text-indent:-18.0pt;}
@list l0:level3
        {mso-level-number-format:roman-lower;
        mso-level-tab-stop:none;
        mso-level-number-position:right;
        text-indent:-9.0pt;}
@list l0:level4
        {mso-level-tab-stop:none;
        mso-level-number-position:left;
        text-indent:-18.0pt;}
@list l0:level5
        {mso-level-number-format:alpha-lower;
        mso-level-tab-stop:none;
        mso-level-number-position:left;
        text-indent:-18.0pt;}
@list l0:level6
        {mso-level-number-format:roman-lower;
        mso-level-tab-stop:none;
        mso-level-number-position:right;
        text-indent:-9.0pt;}
@list l0:level7
        {mso-level-tab-stop:none;
        mso-level-number-position:left;
        text-indent:-18.0pt;}
@list l0:level8
        {mso-level-number-format:alpha-lower;
        mso-level-tab-stop:none;
        mso-level-number-position:left;
        text-indent:-18.0pt;}
@list l0:level9
        {mso-level-number-format:roman-lower;
        mso-level-tab-stop:none;
        mso-level-number-position:right;
        text-indent:-9.0pt;}
ol
        {margin-bottom:0cm;}
ul
        {margin-bottom:0cm;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-US" link="blue" vlink="purple">
<div class="WordSection1">
<p class="MsoNormal">Hello Sebastian,<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">I followed your recommendations regarding rtems_test_begin(), rtems_test_end() and RTEMS_TEST_STATE_USER_INPUT. Now I’m working on getting running the rtems-libbsd testsuit with RTEMS Tester.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">I would like to ask you 2 questions:<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoListParagraph" style="text-indent:-18.0pt;mso-list:l0 level1 lfo1"><![if !supportLists]><span style="mso-list:Ignore">1.<span style="font:7.0pt "Times New Roman"">      
</span></span><![endif]>About arphole: In the arp_processor() function there is an “if” statement which verify 3 conditions. One of them is that spa (source protocol address) should be equal to INADDR_ANY which is 0.0.0.0 and this never happens. From my understanding,
 if the spa could be any address there is no need to test this condition. Is this right?<o:p></o:p></p>
<p class="MsoListParagraph"><o:p> </o:p></p>
<p class="MsoListParagraph" style="text-indent:-18.0pt;mso-list:l0 level1 lfo1"><![if !supportLists]><span style="mso-list:Ignore">2.<span style="font:7.0pt "Times New Roman"">      
</span></span><![endif]>About dhcpcd01 and dhcpcd02: RTEMS Tester gives a timeout error as a result. I think this is because no exit() call happens. Dhcpcd creates a file under /var/db/dhcpcd_<ifname>.lease after obtaining a lease. Maybe this could be used
 as exit condition in test_main() in case of dhcpcd02. A similar solutions could be implemented for the dhcp hook in dhcpcd01 but instead of printing out the environment variables, writing them into a file and checking whether this file exists in test_main().
 What do you think?<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Please let me know if you have any suggestion.<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Thanks for your help,<o:p></o:p></p>
<p class="MsoNormal">Gabriel<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal" style="punctuation-wrap:simple;text-autospace:none"><span lang="DE" style="font-size:10.0pt;font-family:"Arial","sans-serif";color:dimgray">——————————————————————————</span><span lang="DE" style="font-size:10.0pt;font-family:"Arial","sans-serif";color:dimgray"><o:p></o:p></span></p>
<p class="MsoNormal" style="punctuation-wrap:simple;text-autospace:none"><b><span lang="DE" style="font-size:10.0pt;font-family:"Arial","sans-serif";color:dimgray">Deutsches Zentrum für Luft- und Raumfahrt</span></b><span lang="DE" style="font-size:10.0pt;font-family:"Arial","sans-serif";color:dimgray">
 e.V. (DLR)<o:p></o:p></span></p>
<p class="MsoNormal" style="line-height:16.0pt;punctuation-wrap:simple;text-autospace:none">
<a name="Institut"></a><span style="font-size:8.5pt;font-family:"Arial","sans-serif";color:dimgray">Simulation and Software Technology
</span><span style="font-size:8.5pt;font-family:"Arial","sans-serif";color:dimgray">| Lilienthalplatz 7 | 38108 Braunschweig
</span><span style="font-size:8.5pt;font-family:"Arial","sans-serif";color:dimgray"> | Germany</span><span style="font-size:8.5pt;font-family:"Arial","sans-serif";color:dimgray"><o:p></o:p></span></p>
<p class="MsoNormal" style="punctuation-wrap:simple;text-autospace:none"><span style="font-size:10.0pt;font-family:"Arial","sans-serif""><o:p> </o:p></span></p>
<p class="MsoNormal" style="punctuation-wrap:simple;text-autospace:none"><a name="Funktion"></a><span style="font-size:10.0pt;font-family:"Arial","sans-serif";color:dimgray">Dipl.-Ing
<b>Gabriel Moyano</b></span><span style="font-size:8.5pt;font-family:"Arial","sans-serif";color:dimgray">
</span><span style="font-size:8.5pt;font-family:"Arial","sans-serif";color:dimgray">| Research Scientist in Onboard Software Systems group</span><span style="font-size:10.0pt;font-family:"Arial","sans-serif";color:dimgray"><o:p></o:p></span></p>
<p class="MsoNormal" style="line-height:16.0pt;punctuation-wrap:simple;text-autospace:none">
<a name="Telefon"></a><span lang="DE" style="font-size:8.5pt;font-family:"Arial","sans-serif";color:dimgray"><a href="http://www.dlr.de/"><span style="color:blue">DLR.de</span></a><o:p></o:p></span></p>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
</body>
</html>