mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
14 lines
192 B
Python
14 lines
192 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import os
|
||
|
import subprocess
|
||
|
|
||
|
|
||
|
def main():
|
||
|
os.environ["CPU_GATHER_PY"] = "true"
|
||
|
subprocess.check_call("./cpu-gather.sh")
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|