Skip to content

Commit

Permalink
Merge pull request #175 from avildema/kill_iodemo_2_int3
Browse files Browse the repository at this point in the history
IODEMO: add key -kill for run_io_demo.sh
  • Loading branch information
yosefe authored Aug 4, 2021
2 parents 71c0800 + 1a6ba57 commit 644cdae
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/apps/iodemo/run_io_demo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -514,6 +514,7 @@ make_scripts()
echo " -list-tags List available tags and exit"
echo " -start <tag> Start iodemo for given tag"
echo " -stop <tag> Stop iodemo for given tag"
echo " -kill <tag> Kill iodemo for given tag"
echo " -status <tag> Show status of iodemo for given tag"
echo
echo "If no options are given, run all commands and wait for completion"
Expand All @@ -537,6 +538,11 @@ make_scripts()
tag="\$2"
shift
;;
-kill)
action="kill"
tag="\$2"
shift
;;
-status)
action="status"
tag="\$2"
Expand Down

0 comments on commit 644cdae

Please sign in to comment.