mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2024-11-26 22:50:40 +00:00
Note verification process and results
This commit is contained in:
parent
9545541be7
commit
da57e2d416
14
admin-tools/pycdc-runtests.sh
Executable file
14
admin-tools/pycdc-runtests.sh
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
bs=${BASH_SOURCE[0]}
|
||||
testdir=$(dirname $bs)/../test
|
||||
fulldir=$(readlink -f $testdir)
|
||||
cd $fulldir
|
||||
for dir in bytecode_* ; do
|
||||
echo ========= $dir ================
|
||||
cd $fulldir/$dir
|
||||
for file in *.pyc; do
|
||||
if ! pycdc $file > /dev/null ; then
|
||||
echo ----- $dir/$file ------
|
||||
fi
|
||||
done
|
||||
done
|
Loading…
Reference in New Issue
Block a user