Skip to content

Commit

Permalink
run_cheribsd_tests: Fix wrong type
Browse files Browse the repository at this point in the history
  • Loading branch information
jrtc27 committed Sep 30, 2023
1 parent 37463ee commit d962eb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test-scripts/run_cheribsd_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,9 +311,9 @@ def cheribsd_setup_args(args: argparse.Namespace):

def cheribsd_setup_output_dir(args: argparse.Namespace):
if args.kyua_tests_files or args.run_cheribsdtest:
boot_cheribsd.run_host_command(["mkdir", "-p", str(args.test_output_dir)])
boot_cheribsd.run_host_command(["mkdir", "-p", args.test_output_dir])
if not get_global_config().pretend:
(args.test_output_dir / "cmdline").write_text(str(sys.argv))
(Path(args.test_output_dir) / "cmdline").write_text(str(sys.argv))


def add_args(parser: argparse.ArgumentParser):
Expand Down

0 comments on commit d962eb2

Please sign in to comment.