File: testall.py

package info (click to toggle)
jython 2.1.0-20
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 9,388 kB
  • ctags: 12,215
  • sloc: java: 48,499; python: 16,220; xml: 403; makefile: 189; perl: 103; ansic: 24; sh: 14
file content (34 lines) | stat: -rw-r--r-- 621 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import sys
print 'Testing JPython Version', sys.version

from test_support import *

print_test('Core Python Language', 0)

import test_grammar
import test_opcodes
import test_operations
import test_unpack
import test_pow
import test_builtin
import test_exceptions
import test_types
import test_methods

print_test('Standard Extension Modules', 0)

import test_string
import test_math
import test_thread
import test_time
#import test_re

print_test('Integration with Java', 0)

import test_jbasic
import test_jsubclass
import test_jser
import test_jarray
import test_janoninner

print 'All tests completed successfully!'