Skip to content

Commit

Permalink
make linter pass
Browse files Browse the repository at this point in the history
  • Loading branch information
tokatoka committed Feb 22, 2024
1 parent 43844f0 commit d8576eb
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion fuzzers/libafl_ctx_large_map/fuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def build(): # pylint: disable=too-many-branches,too-many-statements
os.environ["UBSAN_OPTIONS"] = "abort_on_error=0"

cflags = ["--libafl"]
cxxflags = ['--libafl', '--std=c++14']
cxxflags = ["--libafl", "--std=c++14"]
utils.append_flags("CFLAGS", cflags)
utils.append_flags("CXXFLAGS", cxxflags)
utils.append_flags("LDFLAGS", cflags)
Expand Down
2 changes: 1 addition & 1 deletion fuzzers/libafl_ctx_mid_map/fuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def build(): # pylint: disable=too-many-branches,too-many-statements
os.environ["UBSAN_OPTIONS"] = "abort_on_error=0"

cflags = ["--libafl"]
cxxflags = ['--libafl', '--std=c++14']
cxxflags = ["--libafl", "--std=c++14"]
utils.append_flags("CFLAGS", cflags)
utils.append_flags("CXXFLAGS", cxxflags)
utils.append_flags("LDFLAGS", cflags)
Expand Down
2 changes: 1 addition & 1 deletion fuzzers/libafl_ctx_small_map/fuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def build(): # pylint: disable=too-many-branches,too-many-statements
os.environ["UBSAN_OPTIONS"] = "abort_on_error=0"

cflags = ["--libafl"]
cxxflags = ['--libafl', '--std=c++14']
cxxflags = ["--libafl", "--std=c++14"]
utils.append_flags("CFLAGS", cflags)
utils.append_flags("CXXFLAGS", cxxflags)
utils.append_flags("LDFLAGS", cflags)
Expand Down
2 changes: 1 addition & 1 deletion fuzzers/libafl_ngram_large_map/fuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def build(): # pylint: disable=too-many-branches,too-many-statements
os.environ["UBSAN_OPTIONS"] = "abort_on_error=0"

cflags = ["--libafl"]
cxxflags = ['--libafl', '--std=c++14']
cxxflags = ["--libafl", "--std=c++14"]
utils.append_flags("CFLAGS", cflags)
utils.append_flags("CXXFLAGS", cxxflags)
utils.append_flags("LDFLAGS", cflags)
Expand Down
2 changes: 1 addition & 1 deletion fuzzers/libafl_ngram_mid_map/fuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def build(): # pylint: disable=too-many-branches,too-many-statements
os.environ["UBSAN_OPTIONS"] = "abort_on_error=0"

cflags = ["--libafl"]
cxxflags = ['--libafl', '--std=c++14']
cxxflags = ["--libafl", "--std=c++14"]
utils.append_flags("CFLAGS", cflags)
utils.append_flags("CXXFLAGS", cxxflags)
utils.append_flags("LDFLAGS", cflags)
Expand Down
2 changes: 1 addition & 1 deletion fuzzers/libafl_ngram_small_map/fuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def build(): # pylint: disable=too-many-branches,too-many-statements
os.environ["UBSAN_OPTIONS"] = "abort_on_error=0"

cflags = ["--libafl"]
cxxflags = ['--libafl', '--std=c++14']
cxxflags = ["--libafl", "--std=c++14"]
utils.append_flags("CFLAGS", cflags)
utils.append_flags("CXXFLAGS", cxxflags)
utils.append_flags("LDFLAGS", cflags)
Expand Down

0 comments on commit d8576eb

Please sign in to comment.