blob: 6a1c48b516623896c389723f00f31761c3e0d2f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
require "formula"
class AflFuzz < Formula
homepage "http://lcamtuf.coredump.cx/afl/"
url "http://lcamtuf.coredump.cx/afl/releases/afl-0.89b.tgz"
sha1 "a004f80489b94882b202b907fd58471bca0859fa"
head "http://lcamtuf.coredump.cx/afl/releases/afl-latest.tgz"
bottle do
sha1 "7ac67d41c4c6943e9fad65ac6556454fc01326a0" => :yosemite
sha1 "0fca06e7c6c9e2bda8274407eff2032b57c4f909" => :mavericks
sha1 "8ad499d0b9276c37795e0ac460c1a9b17d1b9376" => :mountain_lion
end
def install
system "make", "PREFIX=#{prefix}"
system "make", "install", "PREFIX=#{prefix}"
end
test do
cpp_file = testpath/"main.cpp"
exe_file = testpath/"test"
cpp_file.write <<-EOS.undent
#include <iostream>
int main() {
std::cout << "Hello, world!";
}
EOS
system "#{bin}/afl-clang++", "-g", cpp_file, "-o", exe_file
output = `#{exe_file}`
assert_equal 0, $?.exitstatus
assert_equal output, "Hello, world!"
end
end
|