summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorChad Versace <chad.versace@intel.com>2015-07-31 16:44:01 -0700
committerChad Versace <chad.versace@intel.com>2015-07-31 16:54:45 -0700
commit3964e9b77d39e2bd91489a4c42a27638523b8f51 (patch)
tree9c1ec0916733d14b44c27236a457dd7ef4a4bd0f /misc
parenta2b58ec6c101562620e166aa99b13cfb36a63c0e (diff)
crucible-run: Add cmdline flags --fork, --no-fork
This controls whether the test runner's master process forks or not. Tested with: * crucible run --no-fork func.draw-indexed Test passes. * crucible run --no-fork Test func.cmd-buffer.small-secondaries crashes the testrun.
Diffstat (limited to 'misc')
-rw-r--r--misc/crucible-completion.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/crucible-completion.bash b/misc/crucible-completion.bash
index 965a965..018840d 100644
--- a/misc/crucible-completion.bash
+++ b/misc/crucible-completion.bash
@@ -17,7 +17,7 @@ __crucible_ls_tests()
__crucible_run()
{
- COMPREPLY=($(compgen -W "--help --dump --no-dump --no-cleanup --use-spir-v $($1 ls-tests)" -- ${COMP_WORDS[COMP_CWORD]}))
+ COMPREPLY=($(compgen -W "--help --fork --no-fork --dump --no-dump --no-cleanup --use-spir-v $($1 ls-tests)" -- ${COMP_WORDS[COMP_CWORD]}))
}
__crucible()