def run_test_tsan(compiler: Compiler, reporter: Reporter, tests: List[str], config: Config, timeout: Optional[float] = None) -> bool: reporter.log('Running tests with thread sanitizer', 'title') reporter.log('Not implemented') return True runner = TsanRunner() compiler = config.find_compiler() if compiler is None else compiler if not isinstance(compiler, ClangCompiler): reporter.log( 'Thread sanitizer is supported only with clang. Skipping test') return True compiler = common_flags(compiler).add_flag('-fsanitize=thread') orig_tests = tests tests = expand_glob(tests, ['tests/*']) if not tests: no_tests_error(orig_tests, ['tests']) return run_test(compiler=compiler, runner=runner, reporter=reporter, name='test-tsan', tests=tests, timeout=timeout)
def run_test_memcheck(tool: str, compiler: Optional[Compiler], reporter: Reporter, tests: List[str], config: Config, timeout: Optional[float] = None) -> bool: reporter.log(f'Running tests with cuda-memcheck --tool {tool}', 'title') runner = MemcheckRunner(tool) compiler = config.find_compiler() if compiler is None else compiler if compiler is None: raise RuntimeError("Could not find a suitable compiler") compiler = config.common_flags(compiler).add_flag('-O3').add_flag( '-g').add_flag('-Xcompiler', '-rdynamic').add_flag('-lineinfo') orig_tests = tests tests = expand_glob(tests, ['tests/*medium*']) if not tests: no_tests_error(orig_tests, ['tests']) return run_test(compiler=compiler, runner=runner, reporter=reporter, name=f'test-memcheck-{tool}', tests=tests, config=config, timeout=timeout)
def run_test_asan(compiler: Optional[Compiler], reporter: Reporter, tests: List[str], config: Config, timeout: Optional[float] = None) -> bool: reporter.log('Running tests with address sanitizer', 'title') runner = AsanRunner() compiler = config.find_compiler() if compiler is None else compiler if compiler is None: sys.exit("I'm sorry, I could not find a suitable compiler.") if isinstance(compiler, NvccCompiler): compiler = config.common_flags(compiler).add_flag( '-Xcompiler', '"-fsanitize=address"').add_flag('-Xcompiler', '"-fsanitize=undefined"') runner.env[ 'ASAN_OPTIONS'] = 'protect_shadow_gap=0:replace_intrin=0:detect_leaks=0' else: compiler = config.common_flags(compiler).add_flag( '-fsanitize=address').add_flag('-fsanitize=undefined') compiler = compiler.add_flag('-g') orig_tests = tests tests = expand_glob(tests, ['tests/*']) if not tests: no_tests_error(orig_tests, ['tests']) return run_test(compiler=compiler, runner=runner, reporter=reporter, name='test-asan', tests=tests, config=config, timeout=timeout)
def compile_assembly(compiler: Compiler, reporter: Reporter, tests: List[str], config: Config, timeout: Optional[float] = None) -> bool: reporter.log('Compiling to assembly', 'title') compiler = config.find_compiler() if compiler is None else compiler if compiler is None: raise RuntimeError("Could not find a suitable compiler") compiler = config.common_flags(compiler).add_flag('-O3').add_flag( '-S').add_flag('-fverbose-asm') rep = reporter.analysis_group('assembly') output = rep.compilation(compiler.add_source( config.source)).compile(out_file=config.binary) if not output.is_success(): return False rep.analyze(open(config.binary, 'r').read()) return True
def run_test_plain(compiler: Optional[Compiler], reporter: Reporter, tests: List[str], config: Config, timeout: Optional[float] = None) -> bool: reporter.log('Running tests', 'title') runner = Runner() compiler = config.find_compiler() if compiler is None else compiler if compiler is None: sys.exit("I'm sorry, I could not find a suitable compiler.") compiler = config.common_flags(compiler).add_flag('-O3').add_flag('-g') orig_tests = tests tests = expand_glob(tests, ['tests/*', 'benchmarks/*']) if not tests: no_tests_error(orig_tests, ['tests', 'benchmarks']) return run_test(compiler=compiler, runner=runner, reporter=reporter, name='test-plain', tests=tests, config=config, timeout=timeout)
def run_benchmark_all(compiler: Optional[Compiler], reporter: Reporter, tests: List[str], config: Config, timeout: Optional[float] = None) -> bool: reporter.log('Running benchmark', 'title') runner = Runner() compiler = config.find_compiler() if compiler is None else compiler if compiler is None: raise RuntimeError("Could not find a suitable compiler") compiler = config.common_flags(compiler).add_flag('-O3').add_flag('-g') orig_tests = tests tests = expand_glob(tests, ['benchmarks/*']) if not tests: no_tests_error(orig_tests, ['benchmarks']) return run_benchmark(compiler=compiler, runner=runner, reporter=reporter, name='benchmark-all', tests=tests, config=config, timeout=timeout)
def compile_assembly(compiler: Compiler, reporter: Reporter, tests: List[str], config: Config, timeout: Optional[float] = None) -> bool: reporter.log('Compiling to assembly', 'title') compiler = config.find_compiler() if compiler is None else compiler if compiler is None: raise RuntimeError("Could not find a suitable compiler") compiler = config.common_flags(compiler).add_flag('-O3').add_flag( '-S').add_flag('-fverbose-asm') rep = reporter.analysis_group('assembly') output = rep.compilation(compiler.add_source( config.source)).compile(out_file=config.binary) if not output.is_success(): return False assembly = open(config.binary, 'r').read() if len(assembly.encode('utf-8')) > MAX_ASSEMBLY_OUTPUT: assembly = "Generated assembly was too long and wasn't stored" rep.analyze(assembly) return True