We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
args.executables
1 parent b1a7224 commit d049075Copy full SHA for d049075
1 file changed
run_benchmarks.rb
@@ -36,15 +36,14 @@ def sort_benchmarks(bench_names)
36
FileUtils.mkdir_p(args.out_path)
37
38
ruby_descriptions = {}
39
-args.executables.each do |name, executable|
40
- ruby_descriptions[name] = `#{executable.shelljoin} -v`.chomp
41
-end
42
43
# Benchmark with and without YJIT
44
bench_start_time = Time.now.to_f
45
bench_data = {}
46
bench_failures = {}
47
args.executables.each do |name, executable|
+ ruby_descriptions[name] = `#{executable.shelljoin} -v`.chomp
+
48
suite = BenchmarkSuite.new(
49
ruby: executable,
50
ruby_description: ruby_descriptions[name],
0 commit comments