10c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yi# 20c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yi# This file is for everybody to add tests for bugs that aren't 30c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yi# fixed yet. Please add a test case and appropriate bug description. 40c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yi# 50c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yi# When you fix one of the bugs, please move the test to the correct 60c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yi# test_ module. 70c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yi# 80c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yi 90c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yiimport unittest 100c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yifrom test import test_support 110c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yi 120c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yi# 130c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yi# No test cases for outstanding bugs at the moment. 140c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yi# 150c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yi 160c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yi 170c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yidef test_main(): 180c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yi #test_support.run_unittest() 190c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yi pass 200c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yi 210c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yiif __name__ == "__main__": 220c5958b1636c47ed7c284f859c8e805fd06a0e6Bill Yi test_main() 23