(app)
| 798 | cpdir(ceftests_files, os.path.join(bindir, "ceftests_files")) |
| 799 | |
| 800 | def copy_app(app): |
| 801 | if MAC: |
| 802 | # On Mac app is a directory |
| 803 | shutil.copytree(app, |
| 804 | os.path.join(bindir, |
| 805 | os.path.basename(app))) |
| 806 | else: |
| 807 | shutil.copy(app, bindir) |
| 808 | |
| 809 | if not MAC: |
| 810 | # Currently do not copy apps on Mac, as they take lots of |
no test coverage detected