Enhance testing: run all executables

Add a #! line at the beginning of each of the existing Python programs
and change these files to be executable. This sets the stage for having
the test script blindly run anything that is executable, adding support
for testing many programming languages.
This commit is contained in:
Bruce Adams
2013-09-24 21:58:27 -04:00
parent 4bae21ffbf
commit 5749c2c50f
18 changed files with 46 additions and 11 deletions

2
14-tabular/tf-14.py Normal file → Executable file
View File

@@ -1,3 +1,5 @@
#!/usr/bin/env python
import sys, re, string, sqlite3
#