[pypy-svn] r11756 - pypy/testresult/hpk at code1.codespeak.net

hpk at codespeak.net hpk at codespeak.net
Mon May 2 02:14:27 CEST 2005


Author: hpk
Date: Mon May  2 02:14:26 2005
New Revision: 11756

Added:
   pypy/testresult/hpk at code1.codespeak.net/test_generators.txt
   pypy/testresult/hpk at code1.codespeak.net/test_global.txt
   pypy/testresult/hpk at code1.codespeak.net/test_grammar.txt
Modified:
   pypy/testresult/hpk at code1.codespeak.net/test_getopt.txt
   pypy/testresult/hpk at code1.codespeak.net/test_glob.txt
   pypy/testresult/hpk at code1.codespeak.net/test_hash.txt
Log:
more test results


Added: pypy/testresult/hpk at code1.codespeak.net/test_generators.txt
==============================================================================
--- (empty file)
+++ pypy/testresult/hpk at code1.codespeak.net/test_generators.txt	Mon May  2 02:14:26 2005
@@ -0,0 +1,193 @@
+Content-Type: multipart/mixed; boundary="===============7980231702083571109=="
+MIME-Version: 1.0
+cpu mhz: 1603.694
+cpu model: AMD Opteron(tm) Processor 242
+execution-time: 244.039711952
+exit status: 1
+fspath: /home/hpk/pypy-dist/lib-python/2.3.4/test/test_generators.py
+options: ['core']
+outcome: ERR
+platform: linux2
+pypy-revision: 11740
+python-version-info: (2, 3, 5, 'final', 0)
+startdate: Mon May  2 02:06:13 2005
+testreport-version: 1.1
+timeout: 900.0
+userhost: hpk at code1.codespeak.net
+_reprs: {'execution-time': 'float', 'python-version-info': 'tuple',
+	'options': 'list', 'timeout': 'float', 'pypy-revision': 'int',
+	'exit status': 'int'}
+
+--===============7980231702083571109==
+Content-Type: text/plain; charset="us-ascii"
+MIME-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Content-Disposition: attachment; filename="stdout"
+
+*****************************************************************
+Failure in example: print i.next.__doc__
+from line #85 of test.test_generators.__test__.email
+Expected: x.next() -> the next value, or raise StopIteration
+Got: None
+*****************************************************************
+Failure in example: i.gi_running = 42
+from line #99 of test.test_generators.__test__.email
+Expected: TypeError: readonly attribute
+Got: TypeError: read-only attribute
+*****************************************************************
+Failure in example: gen = random.WichmannHill(42)
+from line #146 of test.test_generators.__test__.email
+Exception raised:
+Traceback (most recent call last):
+  File "/home/hpk/pypy-dist/lib-python/2.3.4/doctest.py", line 442, in _run_examples_inner
+    compileflags, 1) in globs
+  File "<string>", line 1, in ?
+AttributeError: 'module' object has no attribute 'WichmannHill'
+*****************************************************************
+Failure in example:
+while 1:
+    for s in sets:
+        print "%s->%s" % (s, s.find()),
+    print
+    if len(roots) > 1:
+        s1 = gen.choice(roots)
+        roots.remove(s1)
+        s2 = gen.choice(roots)
+        s1.union(s2)
+        print "merged", s1, "into", s2
+    else:
+        break
+from line #147 of test.test_generators.__test__.email
+Exception raised:
+Traceback (most recent call last):
+  File "/home/hpk/pypy-dist/lib-python/2.3.4/doctest.py", line 442, in _run_examples_inner
+    compileflags, 1) in globs
+  File "<string>", line 6, in ?
+NameError: global name 'gen' is not defined
+*****************************************************************
+Failure in example: k.next()
+from line #52 of test.test_generators.__test__.pep
+Expected: ZeroDivisionError: integer division or modulo by zero
+Got: ZeroDivisionError: integer division by zero
+*****************************************************************
+Failure in example:
+def f():
+   yield
+from line #73 of test.test_generators.__test__.syntax
+Expected: SyntaxError: invalid syntax
+Got: SyntaxError: invalid syntax (<string>, line 2)
+*****************************************************************
+Failure in example:
+def f():
+   if 0:
+       yield
+from line #78 of test.test_generators.__test__.syntax
+Expected: SyntaxError: invalid syntax
+Got: SyntaxError: invalid syntax (<string>, line 3)
+*****************************************************************
+Failure in example: import weakref
+from line #2 of test.test_generators.__test__.weakref
+Exception raised:
+Traceback (most recent call last):
+  File "/home/hpk/pypy-dist/lib-python/2.3.4/doctest.py", line 442, in _run_examples_inner
+    compileflags, 1) in globs
+  File "<string>", line 1, in ?
+  File "/home/hpk/pypy-dist/lib-python/2.3.4/weakref.py", line 14, in ?
+    from _weakref import \
+ImportError: _weakref
+*****************************************************************
+Failure in example: wr = weakref.ref(gen)
+from line #6 of test.test_generators.__test__.weakref
+Exception raised:
+Traceback (most recent call last):
+  File "/home/hpk/pypy-dist/lib-python/2.3.4/doctest.py", line 442, in _run_examples_inner
+    compileflags, 1) in globs
+  File "<string>", line 1, in ?
+NameError: global name 'weakref' is not defined
+*****************************************************************
+Failure in example: wr() is gen
+from line #7 of test.test_generators.__test__.weakref
+Exception raised:
+Traceback (most recent call last):
+  File "/home/hpk/pypy-dist/lib-python/2.3.4/doctest.py", line 442, in _run_examples_inner
+    compileflags, 1) in globs
+  File "<string>", line 1, in ?
+NameError: global name 'wr' is not defined
+*****************************************************************
+Failure in example: p = weakref.proxy(gen)
+from line #9 of test.test_generators.__test__.weakref
+Exception raised:
+Traceback (most recent call last):
+  File "/home/hpk/pypy-dist/lib-python/2.3.4/doctest.py", line 442, in _run_examples_inner
+    compileflags, 1) in globs
+  File "<string>", line 1, in ?
+NameError: global name 'weakref' is not defined
+*****************************************************************
+Failure in example: wr = weakref.ref(gi)
+from line #14 of test.test_generators.__test__.weakref
+Exception raised:
+Traceback (most recent call last):
+  File "/home/hpk/pypy-dist/lib-python/2.3.4/doctest.py", line 442, in _run_examples_inner
+    compileflags, 1) in globs
+  File "<string>", line 1, in ?
+NameError: global name 'weakref' is not defined
+*****************************************************************
+Failure in example: wr() is gi
+from line #15 of test.test_generators.__test__.weakref
+Exception raised:
+Traceback (most recent call last):
+  File "/home/hpk/pypy-dist/lib-python/2.3.4/doctest.py", line 442, in _run_examples_inner
+    compileflags, 1) in globs
+  File "<string>", line 1, in ?
+NameError: global name 'wr' is not defined
+*****************************************************************
+Failure in example: p = weakref.proxy(gi)
+from line #17 of test.test_generators.__test__.weakref
+Exception raised:
+Traceback (most recent call last):
+  File "/home/hpk/pypy-dist/lib-python/2.3.4/doctest.py", line 442, in _run_examples_inner
+    compileflags, 1) in globs
+  File "<string>", line 1, in ?
+NameError: global name 'weakref' is not defined
+*****************************************************************
+Failure in example: list(p)
+from line #18 of test.test_generators.__test__.weakref
+Exception raised:
+Traceback (most recent call last):
+  File "/home/hpk/pypy-dist/lib-python/2.3.4/doctest.py", line 442, in _run_examples_inner
+    compileflags, 1) in globs
+  File "<string>", line 1, in ?
+NameError: global name 'p' is not defined
+*****************************************************************
+4 items had failures:
+   4 of  31 in test.test_generators.__test__.email
+   1 of  20 in test.test_generators.__test__.pep
+   2 of  29 in test.test_generators.__test__.syntax
+   8 of  10 in test.test_generators.__test__.weakref
+***Test Failed*** 15 failures.
+
+--===============7980231702083571109==
+Content-Type: text/plain; charset="us-ascii"
+MIME-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Content-Disposition: attachment; filename="stderr"
+
+faking <type 'unicode'>
+faking <type 'module'>
+faking <type 'file'>
+faking <type '_sre.SRE_Pattern'>
+faking <type 'function'>
+faking <type 'instancemethod'>
+faking <type 'posix.stat_result'>
+faking <type 'posix.statvfs_result'>
+faking <type '_sre.SRE_Match'>
+Traceback (application-level):
+  File "/home/hpk/pypy-dist/lib-python/2.3.4/test/test_generators.py", line 1412 in ?
+    test_main(1)
+  File "/home/hpk/pypy-dist/lib-python/2.3.4/test/test_generators.py", line 1408 in test_main
+        test_support.run_doctest(test_generators, verbose)
+  File "/home/hpk/pypy-dist/lib-python/2.3.4/test/test_support.py", line 290 in run_doctest
+            raise TestFailed("%d of %d doctests failed" % (f, t))
+TestFailed: 15 of 152 doctests failed
+
+--===============7980231702083571109==--
\ No newline at end of file

Modified: pypy/testresult/hpk at code1.codespeak.net/test_getopt.txt
==============================================================================
--- pypy/testresult/hpk at code1.codespeak.net/test_getopt.txt	(original)
+++ pypy/testresult/hpk at code1.codespeak.net/test_getopt.txt	Mon May  2 02:14:26 2005
@@ -1,16 +1,44 @@
-testreport-version: 1.0
-command: /usr/bin/python /tmp/pypy-autotest-13/pypy-dist/pypy/tool/alarm.py 13500 /tmp/pypy-autotest-13/pypy-dist/pypy/interpreter/py.py  /tmp/pypy-autotest-13/pypy-dist/lib-python-2.3.4/test/test_getopt.py
-run by: hpk at code1.codespeak.net
-sys.platform: linux2
-sys.version_info: (2, 3, 5, 'final', 0)
-cpu model: AMD Opteron(tm) Processor 242
+Content-Type: multipart/mixed; boundary="===============4361236636524145855=="
+MIME-Version: 1.0
 cpu mhz: 1603.694
-oldstyle: no
-pypy-revision: 11680
-startdate: Sun May  1 06:17:43 2005
-timeout: 13500.0 seconds
+cpu model: AMD Opteron(tm) Processor 242
+execution-time: 88.9181101322
+exit status: 0
+fspath: /home/hpk/pypy-dist/lib-python/2.3.4/test/test_getopt.py
+options: ['core']
+outcome: OK
+platform: linux2
+pypy-revision: 11740
+python-version-info: (2, 3, 5, 'final', 0)
+startdate: Mon May  2 02:10:18 2005
+testreport-version: 1.1
+timeout: 841.0
+userhost: hpk at code1.codespeak.net
+_reprs: {'execution-time': 'float', 'python-version-info': 'tuple',
+	'options': 'list', 'timeout': 'float', 'pypy-revision': 'int',
+	'exit status': 'int'}
+
+--===============4361236636524145855==
+Content-Type: text/plain; charset="us-ascii"
+MIME-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Content-Disposition: attachment; filename="stdout"
+
+Running tests on getopt.short_has_arg
+Running tests on getopt.long_has_args
+Running tests on getopt.do_shorts
+Running tests on getopt.do_longs
+Running tests on getopt.getopt
+Running tests on getopt.gnu_getopt
+doctest (__main__) ... 12 tests with zero failures
+Module getopt: tests completed successfully.
+
+--===============4361236636524145855==
+Content-Type: text/plain; charset="us-ascii"
+MIME-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Content-Disposition: attachment; filename="stderr"
 
-============================================================
 faking <type 'unicode'>
 faking <type 'module'>
 faking <type 'file'>
@@ -20,14 +48,5 @@
 faking <type 'function'>
 faking <type 'instancemethod'>
 faking <type '_sre.SRE_Match'>
-Running tests on getopt.short_has_arg
-Running tests on getopt.long_has_args
-Running tests on getopt.do_shorts
-Running tests on getopt.do_longs
-Running tests on getopt.getopt
-Running tests on getopt.gnu_getopt
-doctest (__main__) ... 12 tests with zero failures
-Module getopt: tests completed successfully.
-========================== closed ==========================
-execution time: 87.2648501396 seconds
-exit status: 0
+
+--===============4361236636524145855==--
\ No newline at end of file

Modified: pypy/testresult/hpk at code1.codespeak.net/test_glob.txt
==============================================================================
--- pypy/testresult/hpk at code1.codespeak.net/test_glob.txt	(original)
+++ pypy/testresult/hpk at code1.codespeak.net/test_glob.txt	Mon May  2 02:14:26 2005
@@ -1,16 +1,45 @@
-testreport-version: 1.0
-command: /usr/bin/python /tmp/pypy-autotest-13/pypy-dist/pypy/tool/alarm.py 11759 /tmp/pypy-autotest-13/pypy-dist/pypy/interpreter/py.py  /tmp/pypy-autotest-13/pypy-dist/lib-python-2.3.4/test/test_glob.py
-run by: hpk at code1.codespeak.net
-sys.platform: linux2
-sys.version_info: (2, 3, 5, 'final', 0)
-cpu model: AMD Opteron(tm) Processor 242
+Content-Type: multipart/mixed; boundary="===============1448722861457019459=="
+MIME-Version: 1.0
 cpu mhz: 1603.694
-oldstyle: no
-pypy-revision: 11680
-startdate: Sun May  1 06:19:11 2005
-timeout: 11760.0 seconds
+cpu model: AMD Opteron(tm) Processor 242
+execution-time: 26.3018949032
+exit status: 0
+fspath: /home/hpk/pypy-dist/lib-python/2.3.4/test/test_glob.py
+options: ['core']
+outcome: OK
+platform: linux2
+pypy-revision: 11740
+python-version-info: (2, 3, 5, 'final', 0)
+startdate: Mon May  2 02:11:47 2005
+testreport-version: 1.1
+timeout: 961.0
+userhost: hpk at code1.codespeak.net
+_reprs: {'execution-time': 'float', 'python-version-info': 'tuple',
+	'options': 'list', 'timeout': 'float', 'pypy-revision': 'int',
+	'exit status': 'int'}
+
+--===============1448722861457019459==
+Content-Type: text/plain; charset="us-ascii"
+MIME-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Content-Disposition: attachment; filename="stdout"
+
+test_glob_directory_names (__main__.GlobTests) ... ok
+test_glob_literal (__main__.GlobTests) ... ok
+test_glob_nested_directory (__main__.GlobTests) ... ok
+test_glob_one_directory (__main__.GlobTests) ... ok
+
+----------------------------------------------------------------------
+Ran 4 tests in 14.501s
+
+OK
+
+--===============1448722861457019459==
+Content-Type: text/plain; charset="us-ascii"
+MIME-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Content-Disposition: attachment; filename="stderr"
 
-============================================================
 faking <type 'unicode'>
 faking <type 'module'>
 faking <type 'file'>
@@ -20,15 +49,5 @@
 faking <type 'function'>
 faking <type 'instancemethod'>
 faking <type '_sre.SRE_Match'>
-test_glob_directory_names (__main__.GlobTests) ... ok
-test_glob_literal (__main__.GlobTests) ... ok
-test_glob_nested_directory (__main__.GlobTests) ... ok
-test_glob_one_directory (__main__.GlobTests) ... ok
-
-----------------------------------------------------------------------
-Ran 4 tests in 14.264s
 
-OK
-========================== closed ==========================
-execution time: 24.6971290112 seconds
-exit status: 0
+--===============1448722861457019459==--
\ No newline at end of file

Added: pypy/testresult/hpk at code1.codespeak.net/test_global.txt
==============================================================================
--- (empty file)
+++ pypy/testresult/hpk at code1.codespeak.net/test_global.txt	Mon May  2 02:14:26 2005
@@ -0,0 +1,96 @@
+Content-Type: multipart/mixed; boundary="===============8527208029460999044=="
+MIME-Version: 1.0
+cpu mhz: 1603.694
+cpu model: AMD Opteron(tm) Processor 242
+execution-time: 8.35421800613
+exit status: 2
+fspath: /home/hpk/pypy-dist/lib-python/2.3.4/test/test_global.py
+options: ['core']
+outcome: ERROUT
+platform: linux2
+pypy-revision: 11740
+python-version-info: (2, 3, 5, 'final', 0)
+startdate: Mon May  2 02:12:14 2005
+testreport-version: 1.1
+timeout: 961.0
+userhost: hpk at code1.codespeak.net
+_reprs: {'execution-time': 'float', 'python-version-info': 'tuple',
+	'options': 'list', 'timeout': 'float', 'pypy-revision': 'int',
+	'exit status': 'int'}
+
+--===============8527208029460999044==
+Content-Type: text/plain; charset="us-ascii"
+MIME-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Content-Disposition: attachment; filename="stdout"
+
+should have raised SyntaxError: 
+def wrong1():
+    a = 1
+    b = 2
+    global a
+    global b
+
+should have raised SyntaxError: 
+def wrong2():
+    print x
+    global x
+
+should have raised SyntaxError: 
+def wrong3():
+    print x
+    x = 2
+    global x
+
+as expected, no SyntaxError
+
+--===============8527208029460999044==
+Content-Type: text/plain; charset="us-ascii"
+MIME-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Content-Disposition: attachment; filename="stderr"
+
+faking <type 'unicode'>
+faking <type 'module'>
+faking <type 'file'>
+faking <type 'posix.stat_result'>
+faking <type 'posix.statvfs_result'>
+faking <type '_sre.SRE_Pattern'>
+faking <type 'function'>
+<test code>:2: SyntaxWarning: name 'a' is assigned to before global declaration
+<test code>:2: SyntaxWarning: name 'b' is assigned to before global declaration
+<test code>:2: SyntaxWarning: name 'x' is used prior to global declaration
+<test code>:2: SyntaxWarning: name 'x' is assigned to before global declaration
+
+--===============8527208029460999044==
+Content-Type: text/plain; charset="us-ascii"
+MIME-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Content-Disposition: attachment; filename="reportdiff"
+
+**********************************************************************
+*** mismatch between lines 2-4 of expected output and lines 2-19 of actual output:
+- got SyntaxError as expected
+- got SyntaxError as expected
+- got SyntaxError as expected
++ should have raised SyntaxError: 
++ def wrong1():
++     a = 1
++     b = 2
++     global a
++     global b
++ 
++ should have raised SyntaxError: 
++ def wrong2():
++     print x
++     global x
++ 
++ should have raised SyntaxError: 
++ def wrong3():
++     print x
++     x = 2
++     global x
++ 
+**********************************************************************
+
+--===============8527208029460999044==--
\ No newline at end of file

Added: pypy/testresult/hpk at code1.codespeak.net/test_grammar.txt
==============================================================================
--- (empty file)
+++ pypy/testresult/hpk at code1.codespeak.net/test_grammar.txt	Mon May  2 02:14:26 2005
@@ -0,0 +1,110 @@
+Content-Type: multipart/mixed; boundary="===============0980434005190315954=="
+MIME-Version: 1.0
+cpu mhz: 1603.694
+cpu model: AMD Opteron(tm) Processor 242
+execution-time: 13.283249855
+exit status: 0
+fspath: /home/hpk/pypy-dist/lib-python/2.3.4/test/test_grammar.py
+options: ['core']
+outcome: OK
+platform: linux2
+pypy-revision: 11740
+python-version-info: (2, 3, 5, 'final', 0)
+startdate: Mon May  2 02:12:24 2005
+testreport-version: 1.1
+timeout: 900.0
+userhost: hpk at code1.codespeak.net
+_reprs: {'execution-time': 'float', 'python-version-info': 'tuple',
+	'options': 'list', 'timeout': 'float', 'pypy-revision': 'int',
+	'exit status': 'int'}
+
+--===============0980434005190315954==
+Content-Type: text/plain; charset="us-ascii"
+MIME-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Content-Disposition: attachment; filename="stdout"
+
+1. Parser
+1.1 Tokens
+1.1.1 Backslashes
+1.1.2 Numeric literals
+1.1.2.1 Plain integers
+1.1.2.2 Long integers
+1.1.2.3 Floating point
+1.1.3 String literals
+1.2 Grammar
+single_input
+file_input
+expr_input
+eval_input
+funcdef
+lambdef
+simple_stmt
+expr_stmt
+print_stmt
+1 2 3
+1 2 3
+1 1 1
+extended print_stmt
+1 2 3
+1 2 3
+1 1 1
+hello world
+del_stmt
+pass_stmt
+flow_stmt
+break_stmt
+continue_stmt
+continue + try/except ok
+continue + try/finally ok
+testing continue and break in try/except in loop
+return_stmt
+raise_stmt
+import_stmt
+global_stmt
+exec_stmt
+assert_stmt
+if_stmt
+while_stmt
+for_stmt
+try_stmt
+suite
+test
+comparison
+binary mask ops
+shift ops
+additive ops
+multiplicative ops
+unary ops
+selectors
+
+atoms
+classdef
+['Apple', 'Banana', 'Coco  nut']
+[3, 6, 9, 12, 15]
+[3, 4, 5]
+[(1, 'Apple'), (1, 'Banana'), (1, 'Coconut'), (2, 'Apple'), (2, 'Banana'), (2, 'Coconut'), (3, 'Apple'), (3, 'Banana'), (3, 'Coconut'), (4, 'Apple'), (4, 'Banana'), (4, 'Coconut'), (5, 'Apple'), (5, 'Banana'), (5, 'Coconut')]
+[(1, 'Banana'), (1, 'Coconut'), (2, 'Banana'), (2, 'Coconut'), (3, 'Banana'), (3, 'Coconut'), (4, 'Banana'), (4, 'Coconut'), (5, 'Banana'), (5, 'Coconut')]
+[[1], [1, 1], [1, 2, 4], [1, 3, 9, 27], [1, 4, 16, 64, 256]]
+[False, False, False]
+[[1, 2], [3, 4], [5, 6]]
+[('Boeing', 'Airliner'), ('Boeing', 'Engine'), ('Ford', 'Engine'), ('Macdonalds', 'Cheeseburger')]
+
+--===============0980434005190315954==
+Content-Type: text/plain; charset="us-ascii"
+MIME-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Content-Disposition: attachment; filename="stderr"
+
+faking <type 'unicode'>
+faking <type 'module'>
+faking <type 'file'>
+faking <type 'posix.stat_result'>
+faking <type 'posix.statvfs_result'>
+<string>:0: FutureWarning: hex/oct constants > sys.maxint will return positive values in Python 2.4 and up
+<string>:0: FutureWarning: hex/oct constants > sys.maxint will return positive values in Python 2.4 and up
+<string>:0: FutureWarning: hex/oct constants > sys.maxint will return positive values in Python 2.4 and up
+faking <type '_sre.SRE_Pattern'>
+faking <type 'function'>
+
+--===============0980434005190315954==--
\ No newline at end of file

Modified: pypy/testresult/hpk at code1.codespeak.net/test_hash.txt
==============================================================================
--- pypy/testresult/hpk at code1.codespeak.net/test_hash.txt	(original)
+++ pypy/testresult/hpk at code1.codespeak.net/test_hash.txt	Mon May  2 02:14:26 2005
@@ -1,29 +1,48 @@
-testreport-version: 1.0
-command: /usr/bin/python /tmp/pypy-autotest-13/pypy-dist/pypy/tool/alarm.py 13500 /tmp/pypy-autotest-13/pypy-dist/pypy/interpreter/py.py  /tmp/pypy-autotest-13/pypy-dist/lib-python-2.3.4/test/test_hash.py
-run by: hpk at code1.codespeak.net
-sys.platform: linux2
-sys.version_info: (2, 3, 5, 'final', 0)
-cpu model: AMD Opteron(tm) Processor 242
+Content-Type: multipart/mixed; boundary="===============7907517768040769131=="
+MIME-Version: 1.0
 cpu mhz: 1603.694
-oldstyle: no
-pypy-revision: 11680
-startdate: Sun May  1 06:19:36 2005
-timeout: 13500.0 seconds
+cpu model: AMD Opteron(tm) Processor 242
+execution-time: 10.1873660088
+exit status: 0
+fspath: /home/hpk/pypy-dist/lib-python/2.3.4/test/test_hash.py
+options: ['core']
+outcome: OK
+platform: linux2
+pypy-revision: 11740
+python-version-info: (2, 3, 5, 'final', 0)
+startdate: Mon May  2 02:12:38 2005
+testreport-version: 1.1
+timeout: 961.0
+userhost: hpk at code1.codespeak.net
+_reprs: {'execution-time': 'float', 'python-version-info': 'tuple',
+	'options': 'list', 'timeout': 'float', 'pypy-revision': 'int',
+	'exit status': 'int'}
+
+--===============7907517768040769131==
+Content-Type: text/plain; charset="us-ascii"
+MIME-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Content-Disposition: attachment; filename="stdout"
 
-============================================================
-faking <type 'unicode'>
-faking <type 'module'>
-faking <type 'file'>
-faking <type 'posix.stat_result'>
-faking <type 'posix.statvfs_result'>
 test_coerced_floats (__main__.HashEqualityTestCase) ... ok
 test_coerced_integers (__main__.HashEqualityTestCase) ... ok
 test_numeric_literals (__main__.HashEqualityTestCase) ... ok
 
 ----------------------------------------------------------------------
-Ran 3 tests in 1.692s
+Ran 3 tests in 1.725s
 
 OK
-========================== closed ==========================
-execution time: 8.89893293381 seconds
-exit status: 0
+
+--===============7907517768040769131==
+Content-Type: text/plain; charset="us-ascii"
+MIME-Version: 1.0
+Content-Transfer-Encoding: 7bit
+Content-Disposition: attachment; filename="stderr"
+
+faking <type 'unicode'>
+faking <type 'module'>
+faking <type 'file'>
+faking <type 'posix.stat_result'>
+faking <type 'posix.statvfs_result'>
+
+--===============7907517768040769131==--
\ No newline at end of file



More information about the Pypy-commit mailing list