This is a long known issue https://github.com/sagemath/sage/issues/37026
El sábado, 25 de enero de 2025 a las 1:18:46 UTC+1, [email protected] escribió: More serious : sage -t --long --warn-long 30.0 --random-seed=258790151247230234231313284285510764479 src/sage/libs/gap/element.pyx # Killed due to segmentation fault This is reproducible. according to test.log, the last test to be successfully executed is sage: s = libgap.Sum sage: s(libgap([1,2])) 3 sage: s(libgap(1), libgap(2)) Traceback (most recent call last): ... GAPError: Error, no method found! Error, no 1st choice method found for `SumOp' on 2 arguments sage: for i in range(100): ....: rnd = [ randint(-10,10) for i in range(randint(0,7)) ] ....: # compute the sum in GAP ....: _ = libgap.Sum(rnd) ....: try: ....: libgap.Sum(*rnd) ....: print('This should have triggered a ValueError') ....: print('because Sum needs a list as argument') ....: except ValueError: ....: pass and the crash could have been created by : sage: libgap_exec = libgap.eval("Exec") sage: libgap_exec('echo hello from the shell') hello from the shell Config and logs follow by separate email (the damn Googlegroups interface does not accept .tar.gz files -- You received this message because you are subscribed to the Google Groups "sage-release" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion visit https://groups.google.com/d/msgid/sage-release/ded0ffc8-7372-4f71-b556-3ec5425d81a9n%40googlegroups.com.
