<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body>
    <p>gdb is not going to help for test_ogr_basic_10. As you can see in
      the test, it "runexternal", that is it forks a child process, so
      gdb isn't going to debug this child process by default.<br>
    </p>
    <p>The easiest is to run "test_ogrsf -all_drivers" directly / under
      gdb / under valgrind</p>
    <p>Actually, I've just tried that on my system. Nothing under
      Valgrind, but the execution time was quite slow once it reaches
      the Miramon driver, and breaking under gdb, I see the following<br>
    </p>
    <p>INFO: MiraMonVector: Creation of /foo/test.pol should have
      failed.<br>
      INFO: MiraMonVector: CreateFeature() at line 780 succeeded but
      failed to assign FID to feature.<br>
      ^C--Type <RET> for more, q to quit, c to continue without
      paging--<br>
      <br>
      Thread 1 "test_ogrsf" received signal SIGINT, Interrupt.<br>
      __memset_avx2_erms () at
      ../sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S:151<br>
      151    ../sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S:
      Aucun fichier ou dossier de ce type.<br>
      (gdb) bt<br>
      #0  __memset_avx2_erms () at
      ../sysdeps/x86_64/multiarch/memset-vec-unaligned-erms.S:151<br>
      #1  0x00007ffff5e40ed5 in CPLCalloc (nCount=1, nSize=104857600) at
      /home/even/gdal/MiraMon-Vector-driver/port/cpl_conv.cpp:164<br>
      #2  0x00007ffff6f39a33 in MMMoveFromFileToFile
      (pSrcFile=0x555555bcd870, pDestFile=0x5555562b3b90,
      nOffset=0x5555561f3990)<br>
          at
/home/even/gdal/MiraMon-Vector-driver/ogr/ogrsf_frmts/miramon/mm_wrlayr.c:2693<br>
      #3  0x00007ffff6f388fb in MMCloseArcLayer
      (hMiraMonLayer=0x5555561e4f90) at
/home/even/gdal/MiraMon-Vector-driver/ogr/ogrsf_frmts/miramon/mm_wrlayr.c:2150<br>
      #4  0x00007ffff6f38dc5 in MMCloseLayer
      (hMiraMonLayer=0x5555561e4f90) at
/home/even/gdal/MiraMon-Vector-driver/ogr/ogrsf_frmts/miramon/mm_wrlayr.c:2283<br>
      #5  0x00007ffff6f2d955 in OGRMiraMonLayer::~OGRMiraMonLayer
      (this=0x5555561d5aa0, __in_chrg=<optimized out>) at
/home/even/gdal/MiraMon-Vector-driver/ogr/ogrsf_frmts/miramon/ogrmiramonlayer.cpp:535<br>
      #6  0x00007ffff6f2de22 in OGRMiraMonLayer::~OGRMiraMonLayer
      (this=0x5555561d5aa0, __in_chrg=<optimized out>) at
/home/even/gdal/MiraMon-Vector-driver/ogr/ogrsf_frmts/miramon/ogrmiramonlayer.cpp:619<br>
      #7  0x00007ffff6f2af7a in
      OGRMiraMonDataSource::~OGRMiraMonDataSource (this=0x555556265cb0,
      __in_chrg=<optimized out>)<br>
          at
/home/even/gdal/MiraMon-Vector-driver/ogr/ogrsf_frmts/miramon/ogrmiramondatasource.cpp:50<br>
      #8  0x00007ffff6f2b014 in
      OGRMiraMonDataSource::~OGRMiraMonDataSource (this=0x555556265cb0,
      __in_chrg=<optimized out>)<br>
          at
/home/even/gdal/MiraMon-Vector-driver/ogr/ogrsf_frmts/miramon/ogrmiramondatasource.cpp:57<br>
      #9  0x00007ffff73d61a3 in GDALClose (hDS=0x555556265cb0) at
      /home/even/gdal/MiraMon-Vector-driver/gcore/gdaldataset.cpp:4128<br>
      #10 0x000055555555e167 in TestCreateLayer
      (poDriver=0x55555564e3f0, eGeomType=wkbMultiPoint) at
      /home/even/gdal/MiraMon-Vector-driver/apps/test_ogrsf.cpp:977<br>
      #11 0x000055555555ec61 in TestCreate (poDriver=0x55555564e3f0,
      bFromAllDrivers=1) at
      /home/even/gdal/MiraMon-Vector-driver/apps/test_ogrsf.cpp:1094<br>
      #12 0x000055555555bd56 in ThreadFunctionInternal
      (psContext=0x7fffffffdb60) at
      /home/even/gdal/MiraMon-Vector-driver/apps/test_ogrsf.cpp:325<br>
      #13 0x000055555555bc26 in ThreadFunction
      (user_data=0x7fffffffdb60) at
      /home/even/gdal/MiraMon-Vector-driver/apps/test_ogrsf.cpp:283<br>
      #14 0x000055555555ba62 in main (nArgc=2, papszArgv=0x5555556521b0)
      at /home/even/gdal/MiraMon-Vector-driver/apps/test_ogrsf.cpp:233<br>
      <br>
    </p>
    <p>Actually looking at your MMMoveFromFileToFile(), I see it is
      allocating a working buffer of 100 MB. That's much larger than
      what you really need. A buffer of 64 KB or so would be equally
      performant. This function might also leak the buffer at line 2705.</p>
    <p>"INFO: MiraMonVector: Creation of /foo/test.pol should have
      failed." also indicates some logic error in your driver.</p>
    <p>and</p>
    <p>$ gdb --args ogr2ogr /foo/test.pol autotest/ogr/data/poly.shp<br>
    </p>
    <p>crashes at</p>
    <p>ERROR 4: Error pMMPolygonLayer->pF: Cannot open file
      /foo/test.pol.<br>
      <br>
      Program received signal SIGSEGV, Segmentation fault.<br>
      MMAddArcRecordToMMDB (hMiraMonLayer=0x7fffebbe48f0,
      hMMFeature=0x7fffebc030d0, nElemCount=0,
      pArcHeader=0x555555af3940) at
/home/even/gdal/MiraMon-Vector-driver/ogr/ogrsf_frmts/miramon/mm_wrlayr.c:6602<br>
      6602                                    
      pMMArcLayer->MMAdmDB.pMMBDXP->nRecords + 1))<br>
      (gdb) bt<br>
      #0  MMAddArcRecordToMMDB (hMiraMonLayer=0x7fffebbe48f0,
      hMMFeature=0x7fffebc030d0, nElemCount=0,
      pArcHeader=0x555555af3940)<br>
          at
/home/even/gdal/MiraMon-Vector-driver/ogr/ogrsf_frmts/miramon/mm_wrlayr.c:6602<br>
      #1  0x00007ffff6f3ccd6 in MMCreateFeaturePolOrArc
      (hMiraMonLayer=0x7fffebbe48f0, hMMFeature=0x7fffebc030d0) at
/home/even/gdal/MiraMon-Vector-driver/ogr/ogrsf_frmts/miramon/mm_wrlayr.c:4112<br>
      #2  0x00007ffff6f3de4e in MMAddFeature
      (hMiraMonLayer=0x7fffebbe48f0, hMiraMonFeature=0x7fffebc030d0) at
/home/even/gdal/MiraMon-Vector-driver/ogr/ogrsf_frmts/miramon/mm_wrlayr.c:4598<br>
      #3  0x00007ffff6f31787 in OGRMiraMonLayer::MMWriteGeometry
      (this=0x7fffebbc6010) at
/home/even/gdal/MiraMon-Vector-driver/ogr/ogrsf_frmts/miramon/ogrmiramonlayer.cpp:1718<br>
      #4  0x00007ffff6f30e01 in OGRMiraMonLayer::MMProcessGeometry
      (this=0x7fffebbc6010, hGeom=0x555555a30e10,
      poFeature=0x555555a2d7c0, bcalculateRecord=1 '\001')<br>
          at
/home/even/gdal/MiraMon-Vector-driver/ogr/ogrsf_frmts/miramon/ogrmiramonlayer.cpp:1497<br>
      #5  0x00007ffff6f30a8c in OGRMiraMonLayer::MMProcessMultiGeometry
      (this=0x7fffebbc6010, hGeom=0x555555a30e10,
      poFeature=0x555555a2d7c0)<br>
          at
/home/even/gdal/MiraMon-Vector-driver/ogr/ogrsf_frmts/miramon/ogrmiramonlayer.cpp:1389<br>
      #6  0x00007ffff6f31027 in OGRMiraMonLayer::ICreateFeature
      (this=0x7fffebbc6010, poFeature=0x555555a2d7c0) at
/home/even/gdal/MiraMon-Vector-driver/ogr/ogrsf_frmts/miramon/ogrmiramonlayer.cpp:1549<br>
      #7  0x00007ffff735ec23 in OGRLayer::CreateFeature
      (this=0x7fffebbc6010, poFeature=0x555555a2d7c0) at
/home/even/gdal/MiraMon-Vector-driver/ogr/ogrsf_frmts/generic/ogrlayer.cpp:733<br>
      #8  0x00007ffff75c45fc in LayerTranslator::Translate
      (this=0x7fffffffd9a0, poFeatureIn=0x0, psInfo=0x555555a2b700,
      nCountLayerFeatures=0, pnReadFeatureCount=0x0,
      nTotalEventsDone=@0x7fffffffd618: 0, <br>
          pfnProgress=0x0, pProgressArg=0x0, psOptions=0x555555640dc0)
      at /home/even/gdal/MiraMon-Vector-driver/apps/ogr2ogr_lib.cpp:6292<br>
      #9  0x00007ffff75b9d7b in GDALVectorTranslate
      (pszDest=0x555555640348 "/foo/test.pol", hDstDS=0x0, nSrcCount=1,
      pahSrcDS=0x7fffffffdaf0, psOptionsIn=0x5555556403c0,
      pbUsageError=0x7fffffffdadc)<br>
          at
      /home/even/gdal/MiraMon-Vector-driver/apps/ogr2ogr_lib.cpp:3459<br>
      #10 0x000055555555a730 in main (nArgc=3, papszArgv=0x5555556401b0)
      at /home/even/gdal/MiraMon-Vector-driver/apps/ogr2ogr_bin.cpp:451<br>
    </p>
    <p>By the way, you might want to rebase again against latest master.
      I've just merged <a class="moz-txt-link-freetext" href="https://github.com/OSGeo/gdal/pull/9454">https://github.com/OSGeo/gdal/pull/9454</a> which
      re-activate the ASAN job that I had disabled yesterday night. We
      had some flakiness lately with the ASAN job. hopefully it is more
      stable now...<br>
    </p>
    <div class="moz-cite-prefix">Le 14/03/2024 à 09:51, Abel Pau a
      écrit :<br>
    </div>
    <blockquote type="cite"
cite="mid:PAXPR07MB777583682F19FB37E614EC09A2292@PAXPR07MB7775.eurprd07.prod.outlook.com">
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
      <meta name="Generator"
        content="Microsoft Word 15 (filtered medium)">
      <!--[if !mso]><style>v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style><![endif]-->
      <style>@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}@font-face
        {font-family:Consolas;
        panose-1:2 11 6 9 2 2 4 3 2 4;}@font-face
        {font-family:"Segoe UI Symbol";
        panose-1:2 11 5 2 4 2 4 2 2 3;}p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman",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
        {mso-style-priority:99;
        mso-margin-top-alt:auto;
        margin-right:0cm;
        mso-margin-bottom-alt:auto;
        margin-left:0cm;
        font-size:12.0pt;
        font-family:"Times New Roman",serif;}pre
        {mso-style-priority:99;
        mso-style-link:"HTML con formato previo Car";
        margin:0cm;
        margin-bottom:.0001pt;
        font-size:10.0pt;
        font-family:"Courier New";}span.HTMLconformatoprevioCar
        {mso-style-name:"HTML con formato previo Car";
        mso-style-priority:99;
        mso-style-link:"HTML con formato previo";
        font-family:Consolas;}p.msonormal0, li.msonormal0, div.msonormal0
        {mso-style-name:msonormal;
        mso-style-priority:99;
        mso-margin-top-alt:auto;
        margin-right:0cm;
        mso-margin-bottom-alt:auto;
        margin-left:0cm;
        font-size:12.0pt;
        font-family:"Times New Roman",serif;}span.EstiloCorreo21
        {mso-style-type:personal-reply;
        font-family:"Calibri",sans-serif;
        color:#1F497D;}span.checkstep-line-content
        {mso-style-name:checkstep-line-content;}.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}div.WordSection1
        {page:WordSection1;}</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]-->
      <div class="WordSection1">
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US">Sorry,<o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US">I merged from my phone and I think I did it
            wrong.<o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US"><o:p> </o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US">At this time actions are going well except the
            same that didn’t work at the beginning of this message. The
            MacOS one.<o:p></o:p></span></p>
        <p class="MsoNormal"><a
href="https://github.com/AbelPau/gdal/actions/runs/8277097153/job/22646788426#step:6:2463"
            moz-do-not-send="true">Merge remote-tracking branch
            'upstream/master' into MiraMon-Vector-dr… ·
            AbelPau/gdal@fa6f9e0 (github.com)</a><o:p></o:p></p>
        <p class="MsoNormal"><o:p> </o:p></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US">Your proposal of rebasing didn’t solved the
            problem in macOS.<o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US"><o:p> </o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US">So, I’ll try to get an image of a mac and
            compile, but when I tried to use a Virtual Box it was
            extremly slow.<o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US"><o:p> </o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US">Thanks for any input to try to get some call
            stack with the error described below.<o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US">Using gdb I obtain<o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US">ogr/ogr_basic_test.py
          </span><span
style="font-size:11.0pt;font-family:"Segoe UI Symbol",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US">✓</span><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US">                                                                                
            100% </span><span
style="font-size:11.0pt;font-family:"Arial",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US">██████████</span><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US"><o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US"><o:p> </o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US">Results (7.72s):<o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US">       1 passed<o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US">[Inferior 1 (process 15792) exited normally]<o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US"><o:p> </o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US">And the same with Valgrind.<o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"
            lang="EN-US">Thanks!<o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D"><o:p> </o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D">______________________________
            test_ogr_basic_10 _______________________________
            <o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D"><a
href="https://github.com/AbelPau/gdal/actions/runs/8277097153/job/22646788426#step:6:2465"
              moz-do-not-send="true">2464</a>42:
            <o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D"><a
href="https://github.com/AbelPau/gdal/actions/runs/8277097153/job/22646788426#step:6:2466"
              moz-do-not-send="true">2465</a>42: def
            test_ogr_basic_10():
            <o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D"><a
href="https://github.com/AbelPau/gdal/actions/runs/8277097153/job/22646788426#step:6:2467"
              moz-do-not-send="true">2466</a>42:
            <o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D"><a
href="https://github.com/AbelPau/gdal/actions/runs/8277097153/job/22646788426#step:6:2468"
              moz-do-not-send="true">2467</a>42: import
            test_cli_utilities
            <o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D"><a
href="https://github.com/AbelPau/gdal/actions/runs/8277097153/job/22646788426#step:6:2469"
              moz-do-not-send="true">2468</a>42:
            <o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D"><a
href="https://github.com/AbelPau/gdal/actions/runs/8277097153/job/22646788426#step:6:2470"
              moz-do-not-send="true">2469</a>42: if
            test_cli_utilities.get_test_ogrsf_path() is None:
            <o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D"><a
href="https://github.com/AbelPau/gdal/actions/runs/8277097153/job/22646788426#step:6:2471"
              moz-do-not-send="true">2470</a>42: pytest.skip()
            <o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D"><a
href="https://github.com/AbelPau/gdal/actions/runs/8277097153/job/22646788426#step:6:2472"
              moz-do-not-send="true">2471</a>42:
            <o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D"><a
href="https://github.com/AbelPau/gdal/actions/runs/8277097153/job/22646788426#step:6:2473"
              moz-do-not-send="true">2472</a>42: ret =
            gdaltest.runexternal(
            <o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D"><a
href="https://github.com/AbelPau/gdal/actions/runs/8277097153/job/22646788426#step:6:2474"
              moz-do-not-send="true">2473</a>42:
            test_cli_utilities.get_test_ogrsf_path() + " -all_drivers"
            <o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D"><a
href="https://github.com/AbelPau/gdal/actions/runs/8277097153/job/22646788426#step:6:2475"
              moz-do-not-send="true">2474</a>42: )
            <o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D"><a
href="https://github.com/AbelPau/gdal/actions/runs/8277097153/job/22646788426#step:6:2476"
              moz-do-not-send="true">2475</a>42:
            <o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D"><a
href="https://github.com/AbelPau/gdal/actions/runs/8277097153/job/22646788426#step:6:2477"
              moz-do-not-send="true">2476</a>42: > assert "INFO" in
            ret
            <o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D"><a
href="https://github.com/AbelPau/gdal/actions/runs/8277097153/job/22646788426#step:6:2478"
              moz-do-not-send="true">2477</a>42: E AssertionError:
            assert 'INFO' in '\nERROR ret code = -4' <o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D"><a
href="https://github.com/AbelPau/gdal/actions/runs/8277097153/job/22646788426#step:6:2479"
              moz-do-not-send="true">2478</a>42:
            <o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D"><a
href="https://github.com/AbelPau/gdal/actions/runs/8277097153/job/22646788426#step:6:2480"
              moz-do-not-send="true">2479</a>42:
            /Users/runner/work/gdal/gdal/build/autotest/ogr/ogr_basic_test.py:454:
            AssertionError<o:p></o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"><o:p> </o:p></span></p>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:#1F497D;mso-fareast-language:EN-US"><o:p> </o:p></span></p>
        <div>
          <div
style="border:none;border-top:solid #E1E1E1 1.0pt;padding:3.0pt 0cm 0cm 0cm">
            <p class="MsoNormal"><b><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif">De:</span></b><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif">
                gdal-dev <a class="moz-txt-link-rfc2396E" href="mailto:gdal-dev-bounces@lists.osgeo.org"><gdal-dev-bounces@lists.osgeo.org></a>
                <b>En nombre de </b>Abel Pau via gdal-dev<br>
                <b>Enviado el:</b> dijous, 14 de març de 2024 7:44<br>
                <b>Para:</b> Even Rouault
                <a class="moz-txt-link-rfc2396E" href="mailto:even.rouault@spatialys.com"><even.rouault@spatialys.com></a>;
                <a class="moz-txt-link-abbreviated" href="mailto:gdal-dev@lists.osgeo.org">gdal-dev@lists.osgeo.org</a><br>
                <b>Asunto:</b> Re: [gdal-dev] There's something strange
                about two tests that are very similar<o:p></o:p></span></p>
          </div>
        </div>
        <p class="MsoNormal"><o:p> </o:p></p>
        <div>
          <p class="MsoNormal">Hi,<o:p></o:p></p>
        </div>
        <div>
          <p class="MsoNormal">I rebased yesterday, after your message,
            but same error appeared and some more.<o:p></o:p></p>
        </div>
        <div>
          <p class="MsoNormal">I rebased al 7.00 again and it seems that
            there are again some errors in linux builds.<o:p></o:p></p>
        </div>
        <div>
          <p class="MsoNormal"><o:p> </o:p></p>
        </div>
        <div>
          <p class="MsoNormal">I assume it's because of lasts code
            updates. I'll wait until something stable to rebase again.<o:p></o:p></p>
        </div>
        <div>
          <p class="MsoNormal"><o:p> </o:p></p>
        </div>
        <div id="ms-outlook-mobile-signature">
          <p class="MsoNormal">Enviat des de l'<a
              href="https://aka.ms/AAb9ysg" moz-do-not-send="true">Outlook
              per a l'Android</a><o:p></o:p></p>
        </div>
        <div class="MsoNormal" style="text-align:center" align="center">
          <hr width="98%" size="2" align="center">
        </div>
        <div id="divRplyFwdMsg">
          <p class="MsoNormal"><b><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:black">From:</span></b><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:black">
              Even Rouault <</span><a
              href="mailto:even.rouault@spatialys.com"
              moz-do-not-send="true"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif">even.rouault@spatialys.com</span></a><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:black">><br>
              <b>Sent:</b> Thursday, March 14, 2024 12:15:38 AM<br>
              <b>To:</b> Abel Pau <</span><a
              href="mailto:a.pau@creaf.uab.cat" moz-do-not-send="true"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif">a.pau@creaf.uab.cat</span></a><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:black">>;
            </span><a href="mailto:gdal-dev@lists.osgeo.org"
              moz-do-not-send="true"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif">gdal-dev@lists.osgeo.org</span></a><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:black">
              <</span><a href="mailto:gdal-dev@lists.osgeo.org"
              moz-do-not-send="true"><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif">gdal-dev@lists.osgeo.org</span></a><span
style="font-size:11.0pt;font-family:"Calibri",sans-serif;color:black">><br>
              <b>Subject:</b> Re: [gdal-dev] There's something strange
              about two tests that are very similar</span>
            <o:p></o:p></p>
          <div>
            <p class="MsoNormal"> <o:p></o:p></p>
          </div>
        </div>
        <div>
          <p>try rebasing on top of latest master. It looks like the
            errors are only those fixed per
            <a
href="https://github.com/OSGeo/gdal/commit/6703d3071de7155d320a39a580f27230428dcaca"
              moz-do-not-send="true" class="moz-txt-link-freetext">
https://github.com/OSGeo/gdal/commit/6703d3071de7155d320a39a580f27230428dcaca</a>
            <o:p></o:p></p>
          <pre>-- <o:p></o:p></pre>
          <pre><a href="http://www.spatialys.com" moz-do-not-send="true"
          class="moz-txt-link-freetext">http://www.spatialys.com</a><o:p></o:p></pre>
          <pre>My software is free, but my time generally not.<o:p></o:p></pre>
        </div>
      </div>
    </blockquote>
    <pre class="moz-signature" cols="72">-- 
<a class="moz-txt-link-freetext" href="http://www.spatialys.com">http://www.spatialys.com</a>
My software is free, but my time generally not.</pre>
  </body>
</html>