We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5020af commit 410bb6cCopy full SHA for 410bb6c
run.rb
@@ -62,14 +62,14 @@ def start_fuzzing_process(file_path, writer)
62
63
def run
64
if ARGV.length != 1
65
- puts 'USAGE: fuzz.rb <FILE TO FUZZ>'
+ STDERR.puts('USAGE: fuzz.rb <FILE TO FUZZ>')
66
exit(1)
67
end
68
file_path = ARGV[0].freeze
69
70
# TODO: ensure we don't load this file
71
if !fuzz_function_exists?(file_path)
72
- puts "ERROR: `fuzz` function doesn’t exist in #{file_path}"
+ STDERR.puts("ERROR: `fuzz` function doesn’t exist in #{file_path}")
73
74
75
0 commit comments