diff options
Diffstat (limited to 'meson/test cases/common/179 escape and unicode/find.py')
-rw-r--r-- | meson/test cases/common/179 escape and unicode/find.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/meson/test cases/common/179 escape and unicode/find.py b/meson/test cases/common/179 escape and unicode/find.py new file mode 100644 index 000000000..34a3eb835 --- /dev/null +++ b/meson/test cases/common/179 escape and unicode/find.py @@ -0,0 +1,9 @@ +#!/usr/bin/env python3 + +import os +import sys + +for fh in os.listdir('.'): + if os.path.isfile(fh): + if fh.endswith('.c'): + sys.stdout.write(fh + '\0') |