octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #62681] pkg test: Tests outside of the specifi


From: INVALID.NOREPLY
Subject: [Octave-bug-tracker] [bug #62681] pkg test: Tests outside of the specified package are being run
Date: Tue, 28 Jun 2022 18:20:19 -0400 (EDT)

Follow-up Comment #1, bug #62681 (project octave):

While I don't know if this is the right fix, changing


    if (strncmpi (pkg_list{i}.dir, "__OH__", 6))
      pkg_list{i}.dir = [ loc pkg_list{i}.dir(7:end) ];
      pkg_list{i}.archprefix = [ loc pkg_list{i}.archprefix(7:end) ];
    endif


to


    if (strncmpi (pkg_list{i}.dir, "__OH__", 6))
      pkg_list{i}.dir = [ loc pkg_list{i}.dir(7:end) ];
    endif
    if (strncmpi (pkg_list{i}.archprefix, "__OH__", 6))
      pkg_list{i}.archprefix = [ loc pkg_list{i}.archprefix(7:end) ];
    endif


seems to fix the issue for "pkg test symbolic" in CI.



    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?62681>

_______________________________________________
Message sent via Savannah
https://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]