cc-4105: added misc. testing scripts

This commit is contained in:
Rudi Grinberg 2012-08-01 17:54:32 -04:00
parent f7b48a4dbb
commit c8df791d13
3 changed files with 55 additions and 0 deletions

View file

@ -0,0 +1,7 @@
#!/usr/bin/perl
use strict;
use warnings;
foreach my $file (glob "*.py") {
system("python $file") unless $file =~ /prepare_tests.py/;
}