diff options
author | Brenda J. Butler <bjb@mojatatu.com> | 2018-03-08 15:28:03 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-03-09 11:22:18 -0500 |
commit | 2b3905de8b3d8511aee1d4acbf063197291cdd3f (patch) | |
tree | 73e5ff8f616ef7257164016f3a92fd5e1a351eda /tools/testing | |
parent | 75291f3a6b86a53f2607658de3b8b267e306bf60 (diff) | |
download | talos-op-linux-2b3905de8b3d8511aee1d4acbf063197291cdd3f.tar.gz talos-op-linux-2b3905de8b3d8511aee1d4acbf063197291cdd3f.zip |
tools: tc-testing: Can pause just before post-suite
With option -P, the test script will pause just before
the post_suite functions are called. This allows the tester to
inspect the system before it is torn down.
Signed-off-by: Brenda J. Butler <bjb@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools/testing')
-rwxr-xr-x | tools/testing/selftests/tc-testing/tdc.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/testing/selftests/tc-testing/tdc.py b/tools/testing/selftests/tc-testing/tdc.py index c05b9f0f3db2..44de4a272a11 100755 --- a/tools/testing/selftests/tc-testing/tdc.py +++ b/tools/testing/selftests/tc-testing/tdc.py @@ -324,6 +324,12 @@ def test_runner(pm, args, filtered_tests): count += 1 tap += 'done flushing skipped test tap output\n' + + if args.pause: + print('Want to pause\nPress enter to continue ...') + if input(sys.stdin): + print('got something on stdin') + pm.call_post_suite(index) return tap @@ -406,6 +412,9 @@ def set_args(parser): help='Suppress tap results for command under test') parser.add_argument('-d', '--device', help='Execute the test case in flower category') + parser.add_argument( + '-P', '--pause', action='store_true', + help='Pause execution just before post-suite stage') return parser |