Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / sam-t2 / devtools / v8plus / lib / python2.4 / test / test_sundry.py
CommitLineData
920dae64
AT
1"""Do a minimal test of all the modules that aren't otherwise tested."""
2
3import warnings
4warnings.filterwarnings('ignore', r".*posixfile module",
5 DeprecationWarning, 'posixfile$')
6warnings.filterwarnings('ignore', r".*statcache module",
7 DeprecationWarning, 'statcache$')
8
9from test.test_support import verbose
10
11import BaseHTTPServer
12import CGIHTTPServer
13import Queue
14import SimpleHTTPServer
15import SocketServer
16import aifc
17import anydbm
18import audiodev
19import bdb
20import cmd
21import code
22import codeop
23import colorsys
24import commands
25import compileall
26try:
27 import curses # not available on Windows
28except ImportError:
29 if verbose:
30 print "skipping curses"
31import dircache
32import dis
33import distutils
34import doctest
35import dumbdbm
36import encodings
37import fnmatch
38import formatter
39import fpformat
40import ftplib
41import getpass
42import glob
43import gopherlib
44import htmlentitydefs
45import htmllib
46import httplib
47import imaplib
48import imghdr
49import imputil
50import keyword
51import macpath
52import macurl2path
53import mailcap
54import mhlib
55import mimetypes
56import mimify
57import multifile
58import mutex
59import nntplib
60import nturl2path
61import pdb
62import pipes
63#import poplib
64import posixfile
65import profile
66import pstats
67import py_compile
68#import reconvert
69import repr
70try:
71 import rlcompleter # not available on Windows
72except ImportError:
73 if verbose:
74 print "skipping rlcompleter"
75import robotparser
76import sched
77import sgmllib
78import shelve
79import shlex
80import shutil
81import smtplib
82import sndhdr
83import statcache
84import statvfs
85import stringold
86import sunau
87import sunaudio
88import symbol
89import tabnanny
90import telnetlib
91import test
92import toaiff
93#import tzparse
94import urllib2
95# Can't test the "user" module -- if the user has a ~/.pythonrc.py, it
96# can screw up all sorts of things (esp. if it prints!).
97#import user
98import webbrowser
99import whichdb
100import xdrlib
101import xml