mirror of
https://github.com/hermitcore/libhermit.git
synced 2025-03-30 00:00:15 +01:00
18 lines
495 B
Python
Executable file
18 lines
495 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
import subprocess
|
|
|
|
from config import BENCHMARKS, OPTIONS, HERMIT_RUN_SERVER
|
|
|
|
print('Run native benchmarks.')
|
|
for bm in BENCHMARKS:
|
|
print('Benchmark: ' + bm)
|
|
for opt in OPTIONS:
|
|
subprocess.call([bm] + opt.split())
|
|
|
|
print('\nRun HermitCore benchmarks.')
|
|
for bm in BENCHMARKS:
|
|
print('Benchmark: ' + bm)
|
|
for opt in OPTIONS:
|
|
# subprocess.call((HERMIT_RUN_SERVER + bm).split() + opt.split())
|
|
subprocess.call(HERMIT_RUN_SERVER + bm + ' ' + opt, shell=True)
|