Added test for math module
diff --git a/Lib/test/testall.py b/Lib/test/testall.py
index 92e7b9f..6733a2c 100644
--- a/Lib/test/testall.py
+++ b/Lib/test/testall.py
@@ -29,4 +29,8 @@
 unload('test_types')
 import test_types
 
+print 'test_math'
+unload('test_math')
+import test_math
+
 print 'Passed all tests.'