12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #! /bin/sh
- required=python
- . test-init.sh
- cp "$am_scriptdir/py-compile" . \
- || fatal_ "failed to fetch auxiliary script py-compile"
- : > ./-o.py
- : > ./--foo.py
- ./py-compile -- -o.py --foo.py
- py_installed ./-o.pyc
- py_installed ./-o.pyo
- py_installed ./--foo.pyc
- py_installed ./--foo.pyo
- rm -f ./-*.py[co]
- : > x.py
- ./py-compile x.py -o.py --foo.py
- py_installed ./x.pyc
- py_installed ./x.pyo
- py_installed ./-o.pyc
- py_installed ./-o.pyo
- py_installed ./--foo.pyc
- py_installed ./--foo.pyo
- :
|