|
|
@ -544,9 +544,7 @@ def write_json_log(jsonlogfile: T.TextIO, test_name: str, result: TestRun) -> No |
|
|
|
jsonlogfile.write(json.dumps(jresult) + '\n') |
|
|
|
jsonlogfile.write(json.dumps(jresult) + '\n') |
|
|
|
|
|
|
|
|
|
|
|
def run_with_mono(fname: str) -> bool: |
|
|
|
def run_with_mono(fname: str) -> bool: |
|
|
|
if fname.endswith('.exe') and not (is_windows() or is_cygwin()): |
|
|
|
return fname.endswith('.exe') and not (is_windows() or is_cygwin()) |
|
|
|
return True |
|
|
|
|
|
|
|
return False |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def load_benchmarks(build_dir: str) -> T.List['TestSerialisation']: |
|
|
|
def load_benchmarks(build_dir: str) -> T.List['TestSerialisation']: |
|
|
|
datafile = Path(build_dir) / 'meson-private' / 'meson_benchmark_setup.dat' |
|
|
|
datafile = Path(build_dir) / 'meson-private' / 'meson_benchmark_setup.dat' |
|
|
|