Skip to content

Commit

Permalink
Fix unexpected keyword argument 'print_as_stderr' in crash test (#12339)
Browse files Browse the repository at this point in the history
Summary:
Fix crash test failure like https://github.com/facebook/rocksdb/actions/runs/7821514511/job/21338625372#step:5:530

Pull Request resolved: #12339

Test Plan: CI

Reviewed By: jaykorean

Differential Revision: D53545053

Pulled By: cbi42

fbshipit-source-id: b466a8dc9c0ded0377e8677937199c6f959f96ef
  • Loading branch information
cbi42 authored and facebook-github-bot committed Feb 7, 2024
1 parent 58d55b7 commit b46f570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/db_crashtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ def blackbox_crash_main(args, unknown_args):
print("stdout:", outs)

# Print stderr of the final run
exit_if_stderr_has_errors(errs, print_as_stderr=args.print_stderr_separately)
exit_if_stderr_has_errors(errs, args.print_stderr_separately)

# we need to clean up after ourselves -- only do this on test success
cleanup_after_success(dbname)
Expand Down

0 comments on commit b46f570

Please sign in to comment.