Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fuzzer: Correct the LICENSE #184

Merged
merged 1 commit into from
Sep 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/fuzzer/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# evmone: Fast Ethereum Virtual Machine implementation
# evmone-fuzzer: LibFuzzer based testing tool for EVMC-compatible EVM implementations.
# Copyright 2019 The evmone Authors.
# Licensed under the Apache License, Version 2.0.
include(ExternalProject)
Expand Down
21 changes: 21 additions & 0 deletions test/fuzzer/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# evmone-fuzzer

> [LibFuzzer] powered testing tool for [EVMC]-compatible EVM implementations.

## License

The evmone-fuzzer source code is licensed under the [Apache License, Version 2.0].

### Exceptions

Depending on build system options selected,
the [aleth-interpreter][Aleth] is statically _linked to_ the evmone-fuzzer executable.
The [Aleth] project is licensed under [GNU General Public License, Version 3] therefore
the final evmone-fuzzer binary is also licensed under [GNU General Public License, Version 3].

[Aleth]: https://github.com/ethereum/aleth
[Apache License, Version 2.0]: https://www.apache.org/licenses/LICENSE-2.0.txt
[EVMC]: https://github.com/ethereum/evmc
[evmone]: https://github.com/ethereum/evmone
[GNU General Public License, Version 3]: LICENSE
[LibFuzzer]: https://llvm.org/docs/LibFuzzer.html
7 changes: 2 additions & 5 deletions test/fuzzer/fuzzer.cpp
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
// evmone: Fast Ethereum Virtual Machine implementation
// Copyright 2019 Pawel Bylica.
// evmone-fuzzer: LibFuzzer based testing tool for EVMC-compatible EVM implementations.
// Copyright 2019 The evmone Authors.
// Licensed under the Apache License, Version 2.0.

#include <evmone/evmone.h>

#include <evmc/instructions.h>
#include <test/utils/bytecode.hpp>
#include <test/utils/host_mock.hpp>
#include <test/utils/utils.hpp>
#include <algorithm>
#include <cstring>
#include <iostream>

Expand Down