diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-02-05 04:34:07 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-02-05 04:34:07 +0530 |
commit | 8e585b468b063d598bdc192cf7a799d2f5c1e531 (patch) | |
tree | de5909185da08f19ff717c89e8a2036f65028237 | |
parent | f113f165f9b1a102df2c8e0a4598bab771fd4b91 (diff) | |
download | meson-8e585b468b063d598bdc192cf7a799d2f5c1e531.zip meson-8e585b468b063d598bdc192cf7a799d2f5c1e531.tar.gz meson-8e585b468b063d598bdc192cf7a799d2f5c1e531.tar.bz2 |
tests/common/134: Rename copy.py to copyfile.py
On some distros, running this causes Python to find the file itself as
the implementation of the `copy` module:
$ python3 copy.py
Traceback (most recent call last):
File "copy.py", line 4, in <module>
import shutil
File "/usr/lib/python3.4/shutil.py", line 14, in <module>
import tarfile
File "/usr/lib/python3.4/tarfile.py", line 48, in <module>
import copy
File "/c/Users/nirbheek/projects/meson.git/test cases/common/134 generated llvm ir/copy.py", line 6, in <module>
shutil.copyfile(sys.argv[1], sys.argv[2])
AttributeError: 'module' object has no attribute 'copyfile'
-rw-r--r-- | test cases/common/134 generated llvm ir/copyfile.py (renamed from test cases/common/134 generated llvm ir/copy.py) | 0 | ||||
-rw-r--r-- | test cases/common/134 generated llvm ir/meson.build | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/test cases/common/134 generated llvm ir/copy.py b/test cases/common/134 generated llvm ir/copyfile.py index da503e2..da503e2 100644 --- a/test cases/common/134 generated llvm ir/copy.py +++ b/test cases/common/134 generated llvm ir/copyfile.py diff --git a/test cases/common/134 generated llvm ir/meson.build b/test cases/common/134 generated llvm ir/meson.build index 7982c23..111cdc0 100644 --- a/test cases/common/134 generated llvm ir/meson.build +++ b/test cases/common/134 generated llvm ir/meson.build @@ -4,7 +4,7 @@ if meson.get_compiler('c').get_id() != 'clang' error('MESON_SKIP_TEST: LLVM IR files can only be built with clang') endif -copy = find_program('copy.py') +copy = find_program('copyfile.py') copygen = generator(copy, arguments : ['@INPUT@', '@OUTPUT@'], |