Skip to content

Commit

Permalink
#10842: Increase timeouts in sage/tests/cmdline.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jdemeyer committed Feb 24, 2011
1 parent 7d4da58 commit 34cc5d4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/sage/tests/cmdline.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,15 +78,15 @@ def test_executable(args, input="", timeout=10.0):
TESTS::
sage: (out, err, ret) = test_executable(["sage"], timeout=30)
sage: (out, err, ret) = test_executable(["sage"], timeout=50)
sage: out.find(version()) >= 0
True
sage: err
''
sage: ret
0
sage: (out, err, ret) = test_executable(["sage"], "3^33\n", timeout=30)
sage: (out, err, ret) = test_executable(["sage"], "3^33\n", timeout=50)
sage: out.find(version()) >= 0
True
sage: out.find("5559060566555523") >= 0
Expand All @@ -96,7 +96,7 @@ def test_executable(args, input="", timeout=10.0):
sage: ret
0
sage: (out, err, ret) = test_executable(["sage", "-q"], "3^33\n", timeout=30)
sage: (out, err, ret) = test_executable(["sage", "-q"], "3^33\n", timeout=50)
sage: out.find(version()) >= 0
False
sage: out.find("5559060566555523") >= 0
Expand All @@ -106,15 +106,15 @@ def test_executable(args, input="", timeout=10.0):
sage: ret
0
sage: (out, err, ret) = test_executable(["sage", "-c", "print 3^33"], timeout=30)
sage: (out, err, ret) = test_executable(["sage", "-c", "print 3^33"], timeout=50)
sage: out.find("5559060566555523\n") >= 0
True
sage: err
''
sage: ret
0
sage: (out, err, ret) = test_executable(["sage", "--min", "-c", "print 3^33"], timeout=30)
sage: (out, err, ret) = test_executable(["sage", "--min", "-c", "print 3^33"], timeout=50)
sage: out.find("5559060566555523\n") >= 0
True
sage: err
Expand Down Expand Up @@ -170,7 +170,7 @@ def test_executable(args, input="", timeout=10.0):
sage: ret
0
sage: (out, err, ret) = test_executable(["sage", "--startuptime"], timeout=30)
sage: (out, err, ret) = test_executable(["sage", "--startuptime"], timeout=50)
sage: out.find("sage.all: ") >= 0
True
sage: err
Expand Down

0 comments on commit 34cc5d4

Please sign in to comment.