bugGNU Octave - Bugs: bug #51436, Segmentation fault when running...

 
 

bug #51436: Segmentation fault when running make check-local on 32-bit (with gcc7)

Submitter:  Atri Bhattacharya <badshah400>
Submitted:  Mon 10 Jul 2017 10:06:30 PM UTC
   
 
Category:  Configuration and Build System Severity:  3 - Normal
Priority:  5 - Normal Item Group:  Segfault, Bus Error, etc.
Status:  Invalid / Not an Octave Bug Assigned to:  None
Originator Name:  Open/Closed:  * Closed
Release:  * 4.2.1 Operating System:  * GNU/Linux
Fixed Release:  None Planned Release:  None
* Mandatory Fields

Add a New Comment Rich Markup
   

Jump to the original submission

Wed 12 Jul 2017 05:23:44 PM UTC, comment #20: 

OK. Once again, many thanks for all the help.

Atri Bhattacharya <badshah400>
Wed 12 Jul 2017 05:17:33 PM UTC, comment #19: 

I think 2 GB is a good estimate. I have had build failures from even the compiler not having enough memory on machines with only 1 GB, so I always provision at least 2 GB when building Octave on a VM.

It's up to you what you want to do with OpenBLAS. Building Octave with a specific link for OpenBLAS means that it will only ever run with OpenBLAS. Building Octave against the reference BLAS library means that you can drop in OpenBLAS later at runtime and Octave will use it. I always run configure with the "--with-blas=blas" option to ensure that that is the case. IMHO building and running the test suite with netlib BLAS is safer. If you distribute the binaries you can let the user decide which BLAS library to use.

Closing this bug report.

Mike Miller <mtmiller>
Group Member
Wed 12 Jul 2017 05:05:52 PM UTC, comment #18: 

Right, I think I figured it out. Apparently setting the RAM requirement to 2 GB for obs machines on which octave is being built solves the issue! Probably 1 GB will do too, but I have not tried that yet. That is why on my VMs which always had at least 1 GB of physical memory, all tests were working out ok. Does this make sense?

Furthermore, I went ahead and disabled the openblas linking, because I got the impression from comment #2 that using openblas is not recommended. I haven't tested it with 2 GB memory and openblas linking allowed to see if that works. Should I?

Atri Bhattacharya <badshah400>
Wed 12 Jul 2017 03:37:37 PM UTC, comment #17: 

I'm a bit confused at this point...

When you say,

All of them work just fine, and yet when building on the openSUSE build service the 32-bit builds crash every single time at make check.

do you mean that the make check fails when running on the openSUSE build service?

If so, what kernel version is running there?  If it is one of the kernel versions with the bug, then I suspect that is the problem.

Also, can you take the binary that was built there, and run it on some other system that has a different version of the kernel that is not supposed to have the bug and see if it crashes there when doing _run_test_suite_?  Also, I would verify that _run_test_suite_ demonstrates the problem on the build server, same as "make check".

John W. Eaton <jwe>
Group administrator
Wed 12 Jul 2017 02:51:58 PM UTC, comment #16: 

Tried over and over to see if any test crashes on my 32-bit VM but nada. All of them work just fine, and yet when building on the openSUSE build service the 32-bit builds crash every single time at make check. The only hope is to see if something from the build log pops out as the explanation. Thanks for all the help, folks!

Atri Bhattacharya <badshah400>
Tue 11 Jul 2017 06:35:19 PM UTC, comment #15: 

Yeah that is likely. I am trying to replicate the exact VM setup. Will get back to you.

Atri Bhattacharya <badshah400>
Tue 11 Jul 2017 05:35:47 PM UTC, comment #14: 

Which mean it should pass "make check" as well.

So your build environment on VM is probably different (different kernel versions or libraries) than the one on the build server.

Dmitri.
--

Dmitri A. Sergatskov <dasergatskov>
Tue 11 Jul 2017 05:33:17 PM UTC, comment #13: 

[In response to comment #11]
I see this (no crash):


***** assert (class (double (single (1))), "double")
***** assert (class (double (single (1 + i))), "double")
***** assert (class (double (int8 (1))), "double")
***** assert (class (double (uint8 (1))), "double")
***** assert (class (double (int16 (1))), "double")
***** assert (class (double (uint16 (1))), "double")
***** assert (class (double (int32 (1))), "double")
***** assert (class (double (uint32 (1))), "double")
***** assert (class (double (int64 (1))), "double")
***** assert (class (double (uint64 (1))), "double")
***** assert (class (double (true)), "double")
***** assert (class (double ("A")), "double")
***** test
 x = sparse (logical ([1 0; 0 1]));
 y = double (x);
 assert (class (x), "logical");
 assert (class (y), "double");
 assert (issparse (y));
***** test
 x = diag (single ([1 3 2]));
 y = double (x);
 assert (class (x), "single");
 assert (class (y), "double");
***** test
 x = diag (single ([i 3 2]));
 y = double (x);
 assert (class (x), "single");
 assert (class (y), "double");
***** assert (class (single (1)), "single")
***** assert (class (single (1 + i)), "single")
***** assert (class (single (int8 (1))), "single")
***** assert (class (single (uint8 (1))), "single")
***** assert (class (single (int16 (1))), "single")
***** assert (class (single (uint16 (1))), "single")
***** assert (class (single (int32 (1))), "single")
***** assert (class (single (uint32 (1))), "single")
***** assert (class (single (int64 (1))), "single")
***** assert (class (single (uint64 (1))), "single")
***** assert (class (single (true)), "single")
***** assert (class (single ("A")), "single")
***** error (single (sparse (1)))
***** test
 x = diag ([1 3 2]);
 y = single (x);
 assert (class (x), "double");
 assert (class (y), "single");
***** test
 x = diag ([i 3 2]);
 y = single (x);
 assert (class (x), "double");
 assert (class (y), "single");
***** assert (class (int8 (1)), "int8")
***** assert (int8 (1.25), int8 (1))
***** assert (int8 (1.5), int8 (2))
***** assert (int8 (-1.5), int8 (-2))
***** assert (int8 (2^9), int8 (2^8-1))
***** assert (int8 (-2^9), int8 (-2^8))
***** assert (class (int16 (1)), "int16")
***** assert (int16 (1.25), int16 (1))
***** assert (int16 (1.5), int16 (2))
***** assert (int16 (-1.5), int16 (-2))
***** assert (int16 (2^17), int16 (2^16-1))
***** assert (int16 (-2^17), int16 (-2^16))
***** assert (class (int32 (1)), "int32")
***** assert (int32 (1.25), int32 (1))
***** assert (int32 (1.5), int32 (2))
***** assert (int32 (-1.5), int32 (-2))
***** assert (int32 (2^33), int32 (2^32-1))
***** assert (int32 (-2^33), int32 (-2^32))
***** assert (class (int64 (1)), "int64")
***** assert (int64 (1.25), int64 (1))
***** assert (int64 (1.5), int64 (2))
***** assert (int64 (-1.5), int64 (-2))
***** assert (int64 (2^65), int64 (2^64-1))
***** assert (int64 (-2^65), int64 (-2^64))
***** assert (class (uint8 (1)), "uint8")
***** assert (uint8 (1.25), uint8 (1))
***** assert (uint8 (1.5), uint8 (2))
***** assert (uint8 (-1.5), uint8 (0))
***** assert (uint8 (2^9), uint8 (2^8-1))
***** assert (uint8 (-2^9), uint8 (0))
***** assert (class (uint16 (1)), "uint16")
***** assert (uint16 (1.25), uint16 (1))
***** assert (uint16 (1.5), uint16 (2))
***** assert (uint16 (-1.5), uint16 (0))
***** assert (uint16 (2^17), uint16 (2^16-1))
***** assert (uint16 (-2^17), uint16 (0))
***** assert (class (uint32 (1)), "uint32")
***** assert (uint32 (1.25), uint32 (1))
***** assert (uint32 (1.5), uint32 (2))
***** assert (uint32 (-1.5), uint32 (0))
***** assert (uint32 (2^33), uint32 (2^32-1))
***** assert (uint32 (-2^33), uint32 (0))
***** assert (class (uint64 (1)), "uint64")
***** assert (uint64 (1.25), uint64 (1))
***** assert (uint64 (1.5), uint64 (2))
***** assert (uint64 (-1.5), uint64 (0))
***** assert (uint64 (2^65), uint64 (2^64-1))
***** assert (uint64 (-2^65), uint64 (0))
***** assert (sizeof (uint64 (ones (3))), 72)
***** assert (sizeof (double (zeros (2,4))), 64)
***** assert (sizeof ({"foo", "bar", "baaz"}), 10)
***** test
 a = reshape ([1:25], 5,5);
 idx1 = substruct ("()", {3, 3});
 idx2 = substruct ("()", {2:2:5, 2:2:5});
 idx3 = substruct ("()", {":", [1,5]});
 idx4 = struct ("type", {}, "subs", {});
 assert (subsref (a, idx1), 13);
 assert (subsref (a, idx2), [7 17; 9 19]);
 assert (subsref (a, idx3), [1:5; 21:25]');
 assert (subsref (a, idx4), a);
 a = subsasgn (a, idx1, 0);
 a = subsasgn (a, idx2, 0);
 a = subsasgn (a, idx3, 0);
***** # a = subsasgn (a, idx4, 0);
 b = [0    6   11   16    0
      0    0   12    0    0
      0    8    0   18    0
      0    0   14    0    0
      0   10   15   20    0];
 assert (a, b);
***** test
 x = 1:10;
 assert (subsasgn (x, substruct ("()", {1}), zeros (0, 0)), 2:10);
***** test
 c = num2cell (reshape ([1:25],5,5));
 idx1 = substruct  ("{}", {3, 3});
 idx2 = substruct  ("()", {2:2:5, 2:2:5});
 idx3 = substruct  ("()", {":", [1,5]});
 idx2p = substruct ("{}", {2:2:5, 2:2:5});
 idx3p = substruct ("{}", {":", [1,5]});
 idx4 = struct ("type", {}, "subs", {});
 assert ({ subsref(c, idx1) }, {13});
 assert ({ subsref(c, idx2p) }, {7 9 17 19});
 assert ({ subsref(c, idx3p) }, num2cell ([1:5, 21:25]));
 assert (subsref (c, idx4), c);
 c = subsasgn (c, idx1, 0);
 c = subsasgn (c, idx2, 0);
 c = subsasgn (c, idx3, 0);
***** # c = subsasgn (c, idx4, 0);
 d = {0    6   11   16    0
      0    0   12    0    0
      0    8    0   18    0
      0    0   14    0    0
      0   10   15   20    0};
 assert (c, d);
***** test
 s.a = "ohai";
 s.b = "dere";
 s.c = 42;
 idx1 = substruct (".", "a");
 idx2 = substruct (".", "b");
 idx3 = substruct (".", "c");
 idx4 = struct ("type", {}, "subs", {});
 assert (subsref (s, idx1), "ohai");
 assert (subsref (s, idx2), "dere");
 assert (subsref (s, idx3), 42);
 assert (subsref (s, idx4), s);
 s = subsasgn (s, idx1, "Hello");
 s = subsasgn (s, idx2, "There");
 s = subsasgn (s, idx3, 163);
***** # s = subsasgn (s, idx4, 163);
 t.a = "Hello";
 t.b = "There";
 t.c = 163;
 assert (s, t);
***** assert (is_sq_string ('foo'), true)
***** assert (is_sq_string ("foo"), false)
***** assert (is_sq_string (1.0), false)
***** assert (is_sq_string ({2.0}), false)
***** error is_sq_string ()
***** error is_sq_string ('foo', 2)
***** assert (is_dq_string ("foo"), true)
***** assert (is_dq_string ('foo'), false)
***** assert (is_dq_string (1.0), false)
***** assert (is_dq_string ({2.0}), false)
***** error is_dq_string ()
***** error is_dq_string ("foo", 2)
***** function p = __test_dpm__ (dpm)
  disable_permutation_matrix (dpm, "local");
  [~, ~, p] = lu ([1,2;3,4]);
***** endfunction
***** assert (typeinfo (__test_dpm__ (false)), "permutation matrix")
***** assert (typeinfo (__test_dpm__ (true)), "matrix")
***** function [x, xi, fx, fxi] = __test_ddm__ (ddm)
  disable_diagonal_matrix (ddm, "local");
  x = eye (2);
  xi = x*i;
  fx = single (x);
  fxi = single (xi);
***** endfunction
***** shared x, xi, fx, fxi
  [x, xi, fx, fxi] = __test_ddm__ (false);
***** assert (typeinfo (x), "diagonal matrix")
***** assert (typeinfo (xi), "complex diagonal matrix")
***** assert (typeinfo (fx), "float diagonal matrix")
***** assert (typeinfo (fxi), "float complex diagonal matrix")
***** shared x, xi, fx, fxi
  [x, xi, fx, fxi] = __test_ddm__ (true);
***** assert (typeinfo (x), "matrix")
***** assert (typeinfo (xi), "complex matrix")
***** assert (typeinfo (fx), "float matrix")
***** assert (typeinfo (fxi), "float complex matrix")
***** function r = __test_dr__ (dr)
  disable_range (dr, "local");
  ## Constant folding will produce range for 1:13.
  base = 1;
  limit = 13;
  r = base:limit;
***** endfunction
***** assert (typeinfo (__test_dr__ (false)), "range")
***** assert (typeinfo (__test_dr__ (true)), "matrix")
PASSES 109 out of 109 tests


Atri Bhattacharya <badshah400>
Tue 11 Jul 2017 05:29:21 PM UTC, comment #12: 

Sorry, comment #11 seems to have not come out right.

octave:1> javaObject("java.lang.Object");
octave:2> a=javaObject("java.lang.Object");
octave:3> a
a =

<Java object: java.lang.Object>

So, it doesn't crash here.

Atri Bhattacharya <badshah400>
Tue 11 Jul 2017 05:29:09 PM UTC, comment #11: 

Does it crash if you do (at octave prompt)

test("libinterp/octave-value/ov.cc-tst", "verbose")

?

Dmitri.

Dmitri A. Sergatskov <dasergatskov>
Tue 11 Jul 2017 05:26:32 PM UTC, comment #10: 

That's not the bug on my machine. Sorry for the delay in responding, but I installed a fresh 32-bit VM, then disabled the make check commands and built octave for a 32-bit system. Then launch


:~> octave-cli
GNU Octave, version 4.2.1
Copyright (C) 2017 John W. Eaton and others.
This is free software; see the source code for copying conditions.
There is ABSOLUTELY NO WARRANTY; not even for MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  For details, type 'warranty'.

Octave was configured for "i586-suse-linux-gnu".

Additional information about Octave is available at http://www.octave.org.

Please contribute if you find this software useful.
For more information, visit http://www.octave.org/get-involved.html

Read http://www.octave.org/bugs.html to learn how to submit bug reports.
For information about changes from previous versions, type 'news'.

octave:1> javaObject("java.lang.Object");
octave:2> a=javaObject("java.lang.Object");
octave:3> a
a =

<Java object: java.lang.Object>

-Verbatim-

As you can see, no crash.

Atri Bhattacharya <badshah400>
Tue 11 Jul 2017 02:50:05 PM UTC, comment #9: 

Yeah, this is almost definitely due to the kernel bug affecting Java.

I have a Debian 32-bit unstable VM. I have installed the octave package from the official repositories, linked with netlib BLAS and LAPACK, ATLAS and OpenBLAS are not even installed.

Test command is simply: octave --eval 'javaObject("java.lang.Object");'

Under linux 4.11.6-1, which is the most recently packaged version in Debian, there is no segfault.

Under linux 4.9.30-2, which is vulnerable to CVE-2017-1000364, there is no segfault.

Under linux 4.9.30-2+deb9u1, which contained the first fix attempt for CVE-2017-1000364, Octave segfaults.

Under linux 4.9.30-2+deb9u2, which reverted the previous and added a new fix, there is no segfault.

Please do confirm that you are able to run the test suite under a different linux version.

Mike Miller <mtmiller>
Group Member
Tue 11 Jul 2017 02:49:22 PM UTC, comment #8: 

Removed openblas completely, in favour of lapack. Still triggers the segmentation fault during make check on 32-bit.

Atri Bhattacharya <badshah400>
Tue 11 Jul 2017 02:17:48 PM UTC, comment #7: 

I am trying to build on kernel 4.11.8, which does not have this bug any more. Indeed, scilab and libreoffice which were seen to be crashing due to this kernel bug seems to be working fine on my virtual machines.

I am trying to build without linking to openblas to try out Dmitri's suggestion in comment #2.

Thanks for the quick responses.

Atri Bhattacharya <badshah400>
Tue 11 Jul 2017 12:47:02 PM UTC, comment #6: 

Actually I think this may be a known bug that has to do with a kernel regression and the Java runtime.

See for example https://bugs.debian.org/865303 and https://bugs.launchpad.net/bugs/1699772. This bug apparently affects many user-space programs that embed or launch a Java VM running on certain versions of the 32-bit Linux kernel.

Mike Miller <mtmiller>
Group Member
Tue 11 Jul 2017 04:45:27 AM UTC, comment #5: 

From what I could tell, when running 'make check', the segfault almost always occurred in a dgetrf_ function call in libopenblas.so. And only after all the tests in ov-java.cc-tst passed.

But when running run-octave from the command line it was possible to get it to crash immediately on any Java object or method call.

I forgot to link to the openSUSE build system, which is where this report seems to originate from: https://build.opensuse.org/package/show/science/octave.

Mike Miller <mtmiller>
Group Member
Tue 11 Jul 2017 03:49:33 AM UTC, comment #4: 

Can you find where it crashes?  It seems this would be independent of the GUI, so the easiest way to get a stack trace might be to use "./run-octave -g" and then run the test individually from the prompt.  Something like


./run-octave -g
...
(gdb) run
...
octave> x = javaObject ("java.lang.Object");
octave> test libinterp/corefcn/lu.cc-tst
... and, assuming the segfault happens:
(gdb) where


It still could be a problem with the way we initialize the JVM or whether we are properly saving/restoring CPU modes.  As I recall, some JVM implementations like to set floating point rounding modes and such.  Maybe there is something else we are missing there?

John W. Eaton <jwe>
Group administrator
Tue 11 Jul 2017 03:41:44 AM UTC, comment #3: 

Agree with Dmitri, please try building and running tests without OpenBLAS to see if that makes a difference.

Both Debian-based and Fedora-based distributions are building Octave 4.2.1 and running the test suite without problems. Both build with netlib BLAS and LAPACK, not OpenBLAS.

https://buildd.debian.org/status/fetch.php?pkg=octave&arch=i386&ver=4.2.1-2&stamp=1498828904&raw=0

https://kojipkgs.fedoraproject.org//packages/octave/4.2.1/3.fc27/data/logs/i686/build.log

FWIW I can reproduce this crash or a similar crash during the test suite by building against OpenBLAS on a 32-bit i686 VM. It seems to occur most often in the DGETRF function, which pushes the blame towards OpenBLAS. It also only seems to occur after the Java runtime is loaded. Both OpenBLAS and the JVM start a number of background threads when they are initialized.

For example this does not crash


$ ./run-octave -WqfH --eval 'test libinterp/corefcn/lu.cc-tst'


but this does


$ ./run-octave -WqfH --eval 'x = javaObject ("java.lang.Object"); test libinterp/corefcn/lu.cc-tst'


And both of these crash regardless of the value of OMP_NUM_THREADS.

Mike Miller <mtmiller>
Group Member
Tue 11 Jul 2017 02:00:13 AM UTC, comment #2: 

i686 is quite an exotic architecture now-days... Not many
people have it around now days, but nevertheless other distributions seems to build it sucessfully e.g.:

https://kojipkgs.fedoraproject.org//packages/octave/4.2.1/3.fc26/data/logs/i686/build.log


I would suspect blas libraries. I assume you are using eithe atlas or openblas.  Try to rerun make check preloading a reference
blas library (or just recompile against reference blas):


LD_PRELOAD=/usr/lib/libblas.so make check


(adjust the path to your blas library accordingly)

Sincerely,

Dmitri.
--


Dmitri A. Sergatskov <dasergatskov>
Mon 10 Jul 2017 10:11:50 PM UTC, comment #1: 

Just noting here that using the same config, builds on 64-bits proceed through the make check region with no problem. So this is a 32-bit-only issue.

Atri Bhattacharya <badshah400>
Mon 10 Jul 2017 10:06:30 PM UTC, original submission:  

During building octave on 32-bit systems (on openSUSE), we see the following segmentation fault during running make check-local. The corresponding build log, trimmed to show only the make check section (full log attached), follows. Any suggestion to fix this would be highly appreciated. Many thanks!


make  check-local
make[3]: Entering directory '/home/abuild/rpmbuild/BUILD/octave-4.2.1'
preserving existing HG-ID file
cd test && /bin/sh ../run-octave  --norc --silent --no-history /home/abuild/rpmbuild/BUILD/octave-4.2.1/test/fntests.m /home/abuild/rpmbuild/BUILD/octave-4.2.1/test

Integrated test scripts:

  liboctave/array/Array.cc-tst ................................ PASS     21/21
  liboctave/array/CMatrix.cc-tst .............................. PASS     11/11
  liboctave/array/CSparse.cc-tst .............................. PASS     10/10
  liboctave/array/Sparse.cc-tst ............................... PASS    104/104
  liboctave/array/dMatrix.cc-tst .............................. PASS     10/10
  liboctave/array/dSparse.cc-tst .............................. PASS     12/12
  liboctave/array/fCMatrix.cc-tst ............................. PASS     11/11
  liboctave/array/fMatrix.cc-tst .............................. PASS      8/8
  liboctave/array/idx-vector.cc-tst ........................... PASS      2/2
  liboctave/util/oct-inttypes.cc-tst .......................... PASS     28/28
  libinterp/corefcn/Cell.cc-tst ............................... PASS      4/4
  libinterp/corefcn/__contourc__.cc-tst ....................... PASS      1/1
  libinterp/corefcn/__dispatch__.cc-tst ....................... PASS      1/1
  libinterp/corefcn/__dsearchn__.cc-tst ....................... PASS      1/1
  libinterp/corefcn/__ichol__.cc-tst .......................... PASS      1/1
  libinterp/corefcn/__ilu__.cc-tst ............................ PASS      1/1
  libinterp/corefcn/__lin_interpn__.cc-tst .................... PASS      1/1
  libinterp/corefcn/__magick_read__.cc-tst .................... PASS      4/4
  libinterp/corefcn/__pchip_deriv__.cc-tst .................... PASS      1/1
  libinterp/corefcn/__qp__.cc-tst ............................. PASS      1/1
  libinterp/corefcn/besselj.cc-tst ............................ PASS    191/191
  libinterp/corefcn/betainc.cc-tst ............................ PASS     23/23
  libinterp/corefcn/bitfcns.cc-tst ............................ PASS     57/57
  libinterp/corefcn/bsxfun.cc-tst ............................. PASS     76/76
  libinterp/corefcn/cellfun.cc-tst ............................ PASS    129/129
  libinterp/corefcn/conv2.cc-tst .............................. PASS     48/51
                                                                  XFAIL   3
  libinterp/corefcn/dassl.cc-tst .............................. PASS      4/4
  libinterp/corefcn/data.cc-tst ............................... PASS   1043/1043
  libinterp/corefcn/debug.cc-tst .............................. PASS      2/2
  libinterp/corefcn/defaults.cc-tst ........................... PASS     10/10
  libinterp/corefcn/det.cc-tst ................................ PASS      5/5
  libinterp/corefcn/dirfns.cc-tst ............................. PASS      1/1
  libinterp/corefcn/dlmread.cc-tst ............................ PASS     20/20
  libinterp/corefcn/dot.cc-tst ................................ PASS     22/22
  libinterp/corefcn/eig.cc-tst ................................ PASS     75/75
  libinterp/corefcn/ellipj.cc-tst ............................. PASS     18/18
  libinterp/corefcn/error.cc-tst .............................. PASS      2/2
  libinterp/corefcn/errwarn.cc-tst ............................ PASS      1/1
  libinterp/corefcn/fft.cc-tst ................................ PASS     19/19
  libinterp/corefcn/fft2.cc-tst ............................... PASS      4/4
  libinterp/corefcn/file-io.cc-tst ............................ PASS     81/81
  libinterp/corefcn/filter.cc-tst ............................. PASS     14/14
  libinterp/corefcn/find.cc-tst ............................... PASS     16/16
  libinterp/corefcn/gammainc.cc-tst ........................... PASS      4/4
  libinterp/corefcn/gcd.cc-tst ................................ PASS      9/9
  libinterp/corefcn/getrusage.cc-tst .......................... PASS      1/1
  libinterp/corefcn/givens.cc-tst ............................. PASS      6/6
  libinterp/corefcn/graphics.cc-tst ........................... PASS     39/39
  libinterp/corefcn/hash.cc-tst ............................... PASS     53/53
  libinterp/corefcn/help.cc-tst ............................... PASS      1/1
  libinterp/corefcn/hess.cc-tst ............................... PASS      5/5
  libinterp/corefcn/hex2num.cc-tst ............................ PASS      7/7
  libinterp/corefcn/input.cc-tst .............................. PASS     20/20
  libinterp/corefcn/inv.cc-tst ................................ PASS      7/7
  libinterp/corefcn/kron.cc-tst ............................... PASS     14/14
  libinterp/corefcn/lookup.cc-tst ............................. PASS     20/20
  libinterp/corefcn/lsode.cc-tst .............................. PASS      5/5
  libinterp/corefcn/lu.cc-tst ................................. PASS     22/22
  libinterp/corefcn/mappers.cc-tst ............................ PASS    401/401
  libinterp/corefcn/matrix_type.cc-tst ........................ PASS     51/51
  libinterp/corefcn/max.cc-tst ................................ PASS    110/114
                                                                  XFAIL   4
  libinterp/corefcn/mgorth.cc-tst ............................. PASS      2/2
  libinterp/corefcn/nproc.cc-tst .............................. PASS      5/5
  libinterp/corefcn/oct-map.cc-tst ............................ PASS      8/8
  libinterp/corefcn/ordschur.cc-tst ........................... PASS      4/4
  libinterp/corefcn/pinv.cc-tst ............................... PASS      9/9
  libinterp/corefcn/pr-output.cc-tst .......................... PASS      9/9
  libinterp/corefcn/psi.cc-tst ................................ PASS     30/30
  libinterp/corefcn/quad.cc-tst ............................... PASS      8/8
  libinterp/corefcn/quadcc.cc-tst ............................. PASS     19/19
  libinterp/corefcn/qz.cc-tst ................................. PASS      4/4
  libinterp/corefcn/rand.cc-tst ............................... PASS     63/63
  libinterp/corefcn/rcond.cc-tst .............................. PASS      8/8
  libinterp/corefcn/regexp.cc-tst ............................. PASS    107/107
  libinterp/corefcn/schur.cc-tst .............................. PASS     11/11
  libinterp/corefcn/sighandlers.cc-tst ........................ PASS      9/9
  libinterp/corefcn/sparse-xpow.cc-tst ........................ PASS      2/2
  libinterp/corefcn/spparms.cc-tst ............................ PASS      9/9
  libinterp/corefcn/sqrtm.cc-tst .............................. PASS      3/3
  libinterp/corefcn/str2double.cc-tst ......................... PASS     31/31
  libinterp/corefcn/strfind.cc-tst ............................ PASS     19/19
  libinterp/corefcn/strfns.cc-tst ............................. PASS     86/86
  libinterp/corefcn/sub2ind.cc-tst ............................ PASS     31/31
  libinterp/corefcn/svd.cc-tst ................................ PASS     19/19
  libinterp/corefcn/sylvester.cc-tst .......................... PASS      9/9
  libinterp/corefcn/symtab.cc-tst ............................. PASS      7/7
  libinterp/corefcn/syscalls.cc-tst ........................... PASS      6/6
  libinterp/corefcn/sysdep.cc-tst ............................. PASS      8/8
  libinterp/corefcn/time.cc-tst ............................... PASS     27/27
  libinterp/corefcn/toplev.cc-tst ............................. PASS      7/7
  libinterp/corefcn/tril.cc-tst ............................... PASS      2/2
  libinterp/corefcn/tsearch.cc-tst ............................ PASS      6/6
  libinterp/corefcn/typecast.cc-tst ........................... PASS     59/59
  libinterp/corefcn/utils.cc-tst .............................. PASS     90/90
  libinterp/corefcn/variables.cc-tst .......................... PASS     33/33
  libinterp/dldfcn/__delaunayn__.cc-tst ....................... PASS      1/1
  libinterp/dldfcn/__eigs__.cc-tst ............................ PASS      1/1
  libinterp/dldfcn/__fltk_uigetfile__.cc-tst .................. PASS      1/1
  libinterp/dldfcn/__glpk__.cc-tst ............................ PASS      1/1
  libinterp/dldfcn/__init_fltk__.cc-tst ....................... PASS      1/1
  libinterp/dldfcn/__init_gnuplot__.cc-tst .................... PASS      1/1
  libinterp/dldfcn/__osmesa_print__.cc-tst .................... PASS      0/2
                                                                  FAIL    2
  libinterp/dldfcn/__voronoi__.cc-tst ......................... PASS      1/1
  libinterp/dldfcn/amd.cc-tst ................................. PASS      4/4
  libinterp/dldfcn/audiodevinfo.cc-tst ........................ALSA lib confmisc.c:767:(parse_card) cannot find card '0'
ALSA lib conf.c:4554:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory
ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
ALSA lib conf.c:4554:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
ALSA lib confmisc.c:1246:(snd_func_refer) error evaluating name
ALSA lib conf.c:4554:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5033:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM sysdefault
ALSA lib confmisc.c:767:(parse_card) cannot find card '0'
ALSA lib conf.c:4554:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory
ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
ALSA lib conf.c:4554:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
ALSA lib confmisc.c:1246:(snd_func_refer) error evaluating name
ALSA lib conf.c:4554:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5033:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM sysdefault
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.front
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.rear
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.center_lfe
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.side
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.surround21
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.surround21
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.surround40
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.surround41
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.surround50
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.surround51
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.surround71
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.iec958
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.iec958
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.iec958
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.hdmi
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.hdmi
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.modem
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.modem
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.phoneline
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM cards.pcm.phoneline
ALSA lib confmisc.c:767:(parse_card) cannot find card '0'
ALSA lib conf.c:4554:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory
ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
ALSA lib conf.c:4554:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
ALSA lib confmisc.c:1246:(snd_func_refer) error evaluating name
ALSA lib conf.c:4554:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5033:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM default
ALSA lib confmisc.c:767:(parse_card) cannot find card '0'
ALSA lib conf.c:4554:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory
ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
ALSA lib conf.c:4554:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
ALSA lib confmisc.c:1246:(snd_func_refer) error evaluating name
ALSA lib conf.c:4554:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5033:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM default
ALSA lib confmisc.c:767:(parse_card) cannot find card '0'
ALSA lib conf.c:4554:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory
ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
ALSA lib conf.c:4554:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
ALSA lib confmisc.c:1246:(snd_func_refer) error evaluating name
ALSA lib conf.c:4554:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5033:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2501:(snd_pcm_open_noupdate) Unknown PCM dmix
Cannot connect to server socket err = No such file or directory
Cannot connect to server request channel
jack server is not running or cannot be started
 PASS      4/4
  libinterp/dldfcn/chol.cc-tst ................................ PASS     42/42
  libinterp/dldfcn/convhulln.cc-tst ........................... PASS      4/4
  libinterp/dldfcn/dmperm.cc-tst .............................. PASS      5/5
  libinterp/dldfcn/fftw.cc-tst ................................ PASS     13/13
  libinterp/dldfcn/gzip.cc-tst ................................ PASS      5/7
                                                                  XFAIL   2
  libinterp/dldfcn/qr.cc-tst .................................. PASS     57/57
  libinterp/dldfcn/symbfact.cc-tst ............................ PASS      4/4
  libinterp/octave-value/ov-base.cc-tst ....................... PASS      1/1
  libinterp/octave-value/ov-bool-mat.cc-tst ................... PASS      1/1
  libinterp/octave-value/ov-cell.cc-tst ....................... PASS      1/1
  libinterp/octave-value/ov-class.cc-tst ...................... PASS     50/50
  libinterp/octave-value/ov-cx-diag.cc-tst .................... PASS      1/1
  libinterp/octave-value/ov-fcn-handle.cc-tst ................. PASS     14/14
  libinterp/octave-value/ov-fcn-inline.cc-tst ................. PASS     30/30
  libinterp/octave-value/ov-java.cc-tst ....................... PASS      7/7
  libinterp/octave-value/ov-null-mat.cc-tst ................... PASS      8/8
  libinterp/octave-value/ov-oncleanup.cc-tst .................. PASS      1/1
  libinterp/octave-value/ov-range.cc-tst ...................... PASS      1/1
  libinterp/octave-value/ov-struct.cc-tst ..................... PASS     28/28
  libinterp/octave-value/ov-typeinfo.cc-tst ................... PASS     57/57
  libinterp/octave-value/ov-usr-fcn.cc-tst .................... PASS      7/7
  libinterp/octave-value/ov.cc-tst ............................make[3]: *** [Makefile:28046: check-local] Segmentation fault (core dumped)
make[3]: Leaving directory '/home/abuild/rpmbuild/BUILD/octave-4.2.1'
make[2]: *** [Makefile:26425: check-am] Error 2
make[2]: Leaving directory '/home/abuild/rpmbuild/BUILD/octave-4.2.1'
make[1]: *** [Makefile:26135: check-recursive] Error 1
make[1]: Leaving directory '/home/abuild/rpmbuild/BUILD/octave-4.2.1'
make: *** [Makefile:26427: check] Error 2
error: Bad exit status from /var/tmp/rpm-tmp.OCBTMU (%check)


Atri Bhattacharya <badshah400>

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

Attach Files:
   
   
Comment:
   

Attached Files
file #41161:  _log32bit.tar.xz added by badshah400 (64KiB - application/x-xz - Full build log)

 

Depends on the following items: None found

Items that depend on this one: None found

 

Carbon-Copy List
  • -email is unavailable- added by jwe (Posted a comment)
  • -email is unavailable- added by mtmiller (Posted a comment)
  • -email is unavailable- added by dasergatskov (Posted a comment)
  • -email is unavailable- added by badshah400 (Submitted the item)
  •  

    There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.

    Only group members can vote.

     

    Follow 3 latest changes.

    Date Changed by Updated Field Previous Value => Replaced by
    2017-07-12 mtmiller StatusNone Invalid / Not an Octave Bug
        Open/ClosedOpen Closed
    2017-07-10 badshah400 Attached File- Added _log32bit.tar.xz, #41161

    Back to the top

    Powered by Savane 3.13-758e.
    Corresponding source code