summaryrefslogtreecommitdiff
path: root/.flake8
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2022-01-20 11:30:21 -0800
committerGitHub <noreply@github.com>2022-01-20 11:30:21 -0800
commita1b38c796629f8042d1e1accf4708a6a86bfd408 (patch)
treeafdb4093b6312009777d768a25a54f7a9698f3ea /.flake8
parentc918679ec50d4a404bd06244e79691651bdee95b (diff)
downloadbinaryen-a1b38c796629f8042d1e1accf4708a6a86bfd408.tar.gz
binaryen-a1b38c796629f8042d1e1accf4708a6a86bfd408.tar.bz2
binaryen-a1b38c796629f8042d1e1accf4708a6a86bfd408.zip
Introduce gtest (#4466)
Add gtest as a git submodule in third_party and integrate it into the build the same way WABT does. Adds a new executable, `binaryen-unittests`, to execute `gtest_main`. As a nontrivial example test, port one of the `TypeBuilder` tests from example/ to gtest/. Using gtest has a number of advantages over the current example tests: - Tests are compiled and linked at build time rather than runtime, surfacing errors earlier and speeding up test execution. - Tests are all built into a single binary, reducing overall link time and further reducing test overhead. - Tests are built from the same CMake project as the rest of Binaryen, so compiler settings (e.g. sanitizers) are applied uniformly rather than having to be separately set via the COMPILER_FLAGS environment variable. - Using the industry-standard gtest rather than our own script reduces our maintenance burden. Using gtest will lower the barrier to writing C++ tests and will hopefully lead to us having more proper unit tests.
Diffstat (limited to '.flake8')
-rw-r--r--.flake82
1 files changed, 1 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index d1abdcdce..83735a2f0 100644
--- a/.flake8
+++ b/.flake8
@@ -3,4 +3,4 @@ ignore =
E501, # line too long
E241, # space after comma (ignored for list in gen-s-parser.py)
W504 # line break after binary operator
-exclude = ./test/emscripten,./test/spec,./test/wasm-install,./test/lit
+exclude = third_party,./test/emscripten,./test/spec,./test/wasm-install,./test/lit