<html><body><div style="font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000"><div data-marker="__QUOTED_TEXT__"><div style="font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000"><div><div style="font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000"><div><div style="font-family: arial, helvetica, sans-serif; font-size: 12pt; color: #000000"><div style="orphans: 2; text-align: start; text-indent: 0px; widows: 2; background-color: rgb(255, 255, 255); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><div style=""><div style=""><p style="color: rgb(0, 0, 0); font-family: arial, helvetica, sans-serif; font-size: 12pt; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-transform: none; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; margin: 0px;">Bonjour à tous,</p><p style="color: rgb(0, 0, 0); font-family: arial, helvetica, sans-serif; font-size: 12pt; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-transform: none; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; margin: 0px;"><br></p><p style="color: rgb(0, 0, 0); font-family: arial, helvetica, sans-serif; font-size: 12pt; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-transform: none; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; margin: 0px;">Cette semaine, avec l'aide de Monsieur Picca, nous avons améliorer le dernier<span style="font-size: 12pt;"> test d'intégration pour Pyfai. Nous avons modifié le test pour qu'il parcoure les paquets existants et vérifie la présence de fichiers /usr/bin. Si de tels fichiers sont trouvés, ils sont affichés. Ensuite, nous avons vérifié que les scripts pouvaient se lancer sans problème une fois le paquet installé.</span></p><p style="color: rgb(0, 0, 0); font-family: arial, helvetica, sans-serif; font-size: 12pt; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-transform: none; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; margin: 0px;"><span style="font-size: 12pt;"><br></span></p><p style="color: rgb(0, 0, 0); font-family: arial, helvetica, sans-serif; font-size: 12pt; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-transform: none; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; margin: 0px;">-Le contenu de noveau script:</p><p style="color: rgb(0, 0, 0); font-family: arial, helvetica, sans-serif; font-size: 12pt; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-transform: none; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; margin: 0px;"><br></p><p style="margin: 0px;"><font color="#222222" size="2">#!/bin/sh -ex</font><font color="#222222" size="2"></font></p><p style="margin: 0px;"><font color="#222222" size="2">glxinfo</font><font color="#222222" size="2"></font></p><p style="margin: 0px;"><font color="#222222" size="2">export PYFAI_OPENCL=True</font></p><p style="margin: 0px;"><font color="#222222" size="2">export PYOPENCL_COMPILER_OUTPUT=1</font></p><p style="margin: 0px;"><font color="#222222" size="2"><br></font></p><p style="margin: 0px;"><font color="#222222" size="2">allpkg=$(dh_listpackages)</font></p><p style="margin: 0px;"><font color="#222222" size="2"><br></font></p><p style="margin: 0px;"><font color="#222222" size="2">for p in $allpkg; do</font></p><p style="margin: 0px;"><font color="#222222" size="2"><br></font></p><p style="margin: 0px;"><font color="#222222" size="2">    echo "Package being processed: $p"</font></p><p style="margin: 0px;"><font color="#222222" size="2">    allbinaries=$(dpkg -L "$p"| grep "/usr/bin/")</font></p><p style="margin: 0px;"><font color="#222222" size="2">        if [ -z "$allbinaries" ]; then</font></p><p style="margin: 0px;"><font color="#222222" size="2">                echo "No binaries were found in this package"</font></p><p style="margin: 0px;"><font color="#222222" size="2">                continue</font></p><p style="margin: 0px;"><font color="#222222" size="2">        fi</font></p><p style="margin: 0px;"><font color="#222222" size="2">                echo "Binaries of the package $p :"</font></p><p style="margin: 0px;"><font color="#222222" size="2">                echo "$allbinaries"</font></p><p style="margin: 0px;"><font color="#222222" size="2"><br></font></p><p style="margin: 0px;"><font color="#222222" size="2">    for f in $allbinaries; do</font></p><p style="margin: 0px;"><font color="#222222" size="2">        timeout 5s "$f" </font></p><p style="margin: 0px;"><font color="#222222" size="2">        ec=$?</font></p><p style="margin: 0px;"><font color="#222222" size="2">        echo "tested $f: $ec"</font></p><p style="margin: 0px;"><font color="#222222" size="2">        if [ $ec -eq 143 ]; then</font></p><p style="margin: 0px;"><font color="#222222" size="2">            echo "trapped status 143 and return success for $f"</font></p><p style="margin: 0px;"><font color="#222222" size="2">        elif [ $ec -eq 2 ]; then</font></p><p style="margin: 0px;"><font color="#222222" size="2">            echo "Skipped exit code 2 for $f"</font></p><p style="margin: 0px;"><font color="#222222" size="2">        else</font></p><p style="margin: 0px;"><font color="#222222" size="2">            echo "skipped"</font></p><p style="margin: 0px;"><font color="#222222" size="2">        fi</font></p><p style="margin: 0px;"><font color="#222222" size="2">    done</font></p><p style="margin: 0px;"><font color="#222222" size="2">done</font></p><div style="color: rgb(0, 0, 0); font-family: arial, helvetica, sans-serif; font-size: 12pt; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-transform: none; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal;"><br></div><p style="color: rgb(0, 0, 0); font-family: arial, helvetica, sans-serif; font-size: 12pt; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-transform: none; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; margin: 0px;"><span style="color: #222222; font-family: arial, helvetica, sans-serif; font-size: small; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #ffffff; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline !important;"><br></span></p><p style="color: rgb(0, 0, 0); font-family: arial, helvetica, sans-serif; font-size: 12pt; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-transform: none; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; margin: 0px;"><span style="color: #222222; font-family: arial, helvetica, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #ffffff; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline !important;">-La partie du code ajouter au fichier debian/tests/control:</span></p><p style="color: rgb(0, 0, 0); font-family: arial, helvetica, sans-serif; font-size: 12pt; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-transform: none; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; margin: 0px;"><span style="color: #222222; font-family: arial, helvetica, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #ffffff; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline !important;"><br></span></p><p style="margin: 0px;"><font color="#222222" size="2">Test-Command: xvfb-run -s "-screen 0 1024x768x24 -ac +extension GLX +render -noreset" sh debian/tests/gui</font></p><p style="margin: 0px;"><font color="#222222" size="2">Depends:</font></p><p style="margin: 0px;"><font color="#222222" size="2"> debhelper,</font></p><p style="margin: 0px;"><font color="#222222" size="2"> mesa-utils,</font></p><p style="margin: 0px;"><font color="#222222" size="2"> pyfai,</font></p><p style="margin: 0px;"><font color="#222222" size="2"> xauth,</font></p><p style="margin: 0px;"><font color="#222222" size="2"> xvfb,</font></p><p style="margin: 0px;"><font color="#222222" size="2">Restrictions: allow-stderr</font></p><p style="color: rgb(0, 0, 0); font-family: arial, helvetica, sans-serif; font-size: 12pt; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; text-transform: none; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; margin: 0px;"><br></p></div></div><br></div><div style="color: #000000; font-family: arial, helvetica, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #ffffff; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">Bien cordialement,</div><br style="color: #000000; font-family: arial, helvetica, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #ffffff; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><div style="color: #000000; font-family: arial, helvetica, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #ffffff; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">Oussama RAHLI</div><div style="color: #000000; font-family: arial, helvetica, sans-serif; font-size: 16px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #ffffff; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;">Etudiant à l'insa de Rennes.</div><div style="clear: both;"></div></div></div></div></div></div><br></div></div></body></html>