mirror of
https://github.com/mesonbuild/meson.git
synced 2026-08-12 12:15:41 +00:00
- default to python site-packages - subdir to site-packages/subdir - arbitrary install_dir
12 lines
262 B
Python
Executable File
12 lines
262 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import @tachyon_module@ as tachyon
|
|
|
|
result = tachyon.phaserize('shoot')
|
|
|
|
if not isinstance(result, int):
|
|
raise SystemExit('Returned result not an integer.')
|
|
|
|
if result != 1:
|
|
raise SystemExit(f'Returned result {result} is not 1.')
|