>
> A fresh install of sage-1.4.1.2 seems to be successful, but
>
> The following tests failed:
>
>
> sage -t devel/sage-main/sage/libs/ec/ec.pyx
> sage -t devel/sage-main/sage/functions/orthogonal_polys.py
They don't fail for me, so perhaps you should list the failures?
> Total time for all tests: 633.3 seconds
> [EMAIL PROTECTED] sage-1.4.1.2]$ ./sage
> --------------------------------------------------------
> | SAGE Version 1.4.1.2, Build Date: 2006-10-19 |
> | Distributed under the GNU General Public License V2. |
> --------------------------------------------------------
>
>
>
> sage: axiom('2+3')
>
> [3]+ Stopped ./sage
> [EMAIL PROTECTED] sage-1.4.1.2]$
>
> This simple command hangs sage.
Type "kill -9 %3" at this point.
> There are a lot of processes hanging around related to sage and axiom.
> Don't tell me I have to do a reboot à la Microsoft!
Here's a useful Python script. Just create it as "killemall", then
do
"killemall -9 sage"
and
"killemall -9 axiom"
-- William
That your version of axiom hangs with SAGE is something to investigate
further.
#
# kill 'em all !
# By William Stein ([EMAIL PROTECTED])
#
import os, sys
if len(sys.argv) == 1:
print "Usage: %s [options to kill] word "%sys.argv[0]
print "Kills every process whose ps line contains given word (not case
sensitive)."
sys.exit(0)
n = len(sys.argv)
cmd = sys.argv[n-1].lower()
options = " ".join(sys.argv[1:n-1])
x = os.popen("ps ax").read()
if len(x) <= 1:
sys.exit(0)
for y in x.split("\n"):
if y.find(sys.argv[0]) != -1 and y.find("python") != -1:
continue
if not (cmd in y.lower()):
continue
s = "kill %s %s"%(options,y.split()[0])
print s
os.system(s)
--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/sage-support
URLs: http://sage.math.washington.edu/sage/ and http://sage.scipy.org/sage/
-~----------~----~----~----~------~----~------~--~---