2
0
mirror of https://github.com/m-labs/artiq.git synced 2025-02-08 08:35:22 +08:00
artiq/artiq/test/lit/not.py

8 lines
119 B
Python

import sys, subprocess
def main():
exit(not subprocess.call(sys.argv[1:]))
if __name__ == "__main__":
main()