Add verify tests. Add Python 2.6 bytecode and use.

This commit is contained in:
rocky
2015-12-26 19:14:53 -05:00
parent 3ac3ef24ac
commit 6bd61deccc
26 changed files with 14 additions and 15 deletions

View File

@@ -54,15 +54,6 @@ tests['2.2'] = ['divide_future', 'divide_no_future', 'iterators',
tests['2.3'] = tests['2.2']
tests['2.5'] = tests['2.3']
# tests['2.7'] = ['mine'] + tests['2.6']
tests['2.7'] = [
'simple_source/branching/ifelse',
# 'simple_source/branching/if'
'simple_source/misc/assert',
'simple_source/misc/assign',
# 'simple_source/call_arguments/keyword',
# 'simple_source/call_arguments/positional'
]
tests['2.6'] = tests['2.7']
def file_matches(files, root, basenames, patterns):
files.extend(
@@ -79,7 +70,7 @@ for root, dirs, basenames in os.walk('simple_source'):
simple_source.append(os.path.join(root, basename)[0:-3])
pass
tests['3.3'] = tests['3.4'] = simple_source
tests['2.6'] = tests['2.7'] = tests['3.3'] = tests['3.4'] = simple_source
total_tests = len(tests['2.7'])
#tests['2.2'].sort(); print tests['2.2']