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

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

[Octave-bug-tracker] [bug #57435] Test suite crashes on Windows on spars


From: John W. Eaton
Subject: [Octave-bug-tracker] [bug #57435] Test suite crashes on Windows on sparse.tst
Date: Fri, 20 Dec 2019 15:19:28 -0500 (EST)
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0

Follow-up Comment #11, bug #57435 (project octave):

Maybe the bug is in suitesparse?  Or something that we are doing wrong is
exposed by the new version?  It might be nice to know what the cause of the
problem is.

Looking at the __run_test_suite__ script, it operates recursively on
directories, so there doesn't seem to be a simple way to execute a linear list
of test files.  Maybe you could generate a cell array list of all the .tst
files that are installed and then do something like


list_of_test_files = { ... };
for i = 1:numel (list_of_test_files)
  f = list_of_test_files{i};
  disp (f);
  test (f);
end
test ("/path/to/sparse.tst")


and then bisect on the list of files until you can find the one that needs to
be executed before sparse.tst to cause the failure?



    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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