Skip to content

Test discovery failed for pytest 4.3.0 (not including cwd in path) #6417

@karthiknadig

Description

@karthiknadig

Environment data

  • VS Code version: 1.35.1
  • Extension version (available under the Extensions sidebar): 2019.6.22090
  • OS and version: Windows
  • Python version (& distribution if applicable, e.g. Anaconda): 3.7.3
  • Type of virtual environment used (N/A | venv | virtualenv | conda | ...): N/A
  • Relevant/affected Python packages and their versions: pytest
  • Jedi or Language Server? (i.e. what is "python.jediEnabled" set to; more info How to update the language server to the latest stable version #3977): N/A

Expected behaviour

Tests should be discovered.

Actual behaviour

image

Steps to reproduce:

  1. Clone ptvsd : https://github.com/Microsoft/ptvsd
  2. Switch to dbg_adapter_refactor branch

Logs

Output for Python in the Output panel (ViewOutput, change the drop-down the upper-right of the Output panel to Python)

python C:\Users\kanadig\.vscode\extensions\ms-python.python-2019.6.22090\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear
Test Discovery failed: 
Error: I+00.047: Test environment:
          
          CPU count: 12
          
          System paths:
              sys.prefix: C:\Python37
              sys.base_prefix: C:\Python37
              sys.real_prefix: <missing>
              site.getsitepackages(): C:\Python37
                                      C:\Python37\lib\site-packages
              site.getusersitepackages(): C:\Users\kanadig\AppData\Roaming\Python\Python37\site-packages
              sys.path (site-packages): C:\Python37\lib\site-packages
                                        C:\Users\kanadig\AppData\Roaming\Python\Python37\site-packages
              sysconfig.get_path('stdlib'): C:\Python37\Lib
              sysconfig.get_path('platstdlib'): C:\Python37\Lib
              sysconfig.get_path('purelib'): C:\Python37\Lib\site-packages
              sysconfig.get_path('platlib'): C:\Python37\Lib\site-packages
              sysconfig.get_path('include'): C:\Python37\Include
              sysconfig.get_path('scripts'): C:\Python37\Scripts
              sysconfig.get_path('data'): C:\Python37
              os.__file__: C:\Python37\lib\os.py
              threading.__file__: C:\Python37\lib\threading.py

Note that pytest is able to discover tests if run directly

py -3.7 -m pytest --collect-only

C:\GIT\ptvsd>py -3.7 -m pytest --collect-only
================================================= test session starts =================================================
platform win32 -- Python 3.7.3, pytest-4.3.0, py-1.8.0, pluggy-0.9.0
I+00.047: Test environment:

          CPU count: 12

          System paths:
              sys.prefix: C:\Python37
              sys.base_prefix: C:\Python37
              sys.real_prefix: <missing>
              site.getsitepackages(): C:\Python37
                                      C:\Python37\lib\site-packages
              site.getusersitepackages(): C:\Users\kanadig\AppData\Roaming\Python\Python37\site-packages
              sys.path (site-packages): C:\Python37\lib\site-packages
                                        C:\Users\kanadig\AppData\Roaming\Python\Python37\site-packages
              sysconfig.get_path('stdlib'): C:\Python37\Lib
              sysconfig.get_path('platstdlib'): C:\Python37\Lib
              sysconfig.get_path('purelib'): C:\Python37\Lib\site-packages
              sysconfig.get_path('platlib'): C:\Python37\Lib\site-packages
              sysconfig.get_path('include'): C:\Python37\Include
              sysconfig.get_path('scripts'): C:\Python37\Scripts
              sysconfig.get_path('data'): C:\Python37
              os.__file__: C:\Python37\lib\os.py
              threading.__file__: C:\Python37\lib\threading.py

rootdir: C:\GIT\ptvsd, inifile: pytest.ini
plugins: xdist-1.26.1, timeout-1.3.3, forked-1.0.2, cov-2.6.1
timeout: 30.0s
timeout method: thread
timeout func_only: False
collected 998 items
<Package C:\GIT\ptvsd\tests\ptvsd\common>
  <Module test_messaging.py>
    <Class TestJsonIOStream>
        <Function test_read>
        <Function test_write>
    <Class TestJsonMemoryStream>
        <Function test_read>
        <Function test_write>
    <Class TestJsonMessageChannel>
        <Function test_events>
        <Function test_requests>
        <Function test_responses>
        <Function test_yield>
        <Function test_invalid_request_handling>
        <Function test_fuzz>
  <Module test_socket.py>
    <Class TestSocketServerReuse>
        <Function test_reuse_same_address_port>
        <Function test_reuse_same_port>
    <Class TestAddress>
        <Function test_from_raw>
        <Function test_as_server_valid_address[localhost]>
        <Function test_as_server_valid_address[127.0.0.1]>
        <Function test_as_server_valid_address[::]>
        <Function test_as_server_valid_address[1.2.3.4]>
        <Function test_as_server_public_host>
        <Function test_as_server_default_host>
        <Function test_as_server_bad_port[None]>
        <Function test_as_server_bad_port[]>
        <Function test_as_server_bad_port[localhost]>
        <Function test_as_server_bad_port[1.2.3.4]>
        <Function test_as_server_bad_port2[None]>
        <Function test_as_server_bad_port2[]>
        <Function test_as_server_bad_port2[localhost]>
        <Function test_as_server_bad_port2[1.2.3.4]>
        <Function test_as_server_bad_port2[-1-None]>
        <Function test_as_server_bad_port2[-1]>
        <Function test_as_server_bad_port2[-1-localhost]>
        <Function test_as_server_bad_port2[-1-1.2.3.4]>
        <Function test_as_server_bad_port2[65536-None]>
        <Function test_as_server_bad_port2[65536]>
        <Function test_as_server_bad_port2[65536-localhost]>
        <Function test_as_server_bad_port2[65536-1.2.3.4]>
        <Function test_as_client_valid_address[localhost]>
        <Function test_as_client_valid_address[127.0.0.1]>
        <Function test_as_client_valid_address[::]>
        <Function test_as_client_valid_address[1.2.3.4]>
        <Function test_as_client_public_host>
        <Function test_as_client_default_host>
        <Function test_as_client_bad_port[None]>
        <Function test_as_client_bad_port[]>
        <Function test_as_client_bad_port[localhost]>
        <Function test_as_client_bad_port[1.2.3.4]>
        <Function test_as_client_bad_port2[None]>
        <Function test_as_client_bad_port2[]>
        <Function test_as_client_bad_port2[localhost]>
        <Function test_as_client_bad_port2[1.2.3.4]>
        <Function test_as_client_bad_port2[-1-None]>
        <Function test_as_client_bad_port2[-1]>
        <Function test_as_client_bad_port2[-1-localhost]>
        <Function test_as_client_bad_port2[-1-1.2.3.4]>
        <Function test_as_client_bad_port2[65536-None]>
        <Function test_as_client_bad_port2[65536]>
        <Function test_as_client_bad_port2[65536-localhost]>
        <Function test_as_client_bad_port2[65536-1.2.3.4]>
        <Function test_new_valid_address[localhost]>
        <Function test_new_valid_address[127.0.0.1]>
        <Function test_new_valid_address[::]>
        <Function test_new_valid_address[1.2.3.4]>
        <Function test_new_public_host>
        <Function test_new_default_host>
        <Function test_new_wildcard_host>
        <Function test_new_bad_port[None]>
        <Function test_new_bad_port[]>
        <Function test_new_bad_port[localhost]>
        <Function test_new_bad_port[1.2.3.4]>
        <Function test_new_bad_port2[None]>
        <Function test_new_bad_port2[]>
        <Function test_new_bad_port2[localhost]>
        <Function test_new_bad_port2[1.2.3.4]>
        <Function test_new_bad_port2[-1-None]>
        <Function test_new_bad_port2[-1]>
        <Function test_new_bad_port2[-1-localhost]>
        <Function test_new_bad_port2[-1-1.2.3.4]>
        <Function test_new_bad_port2[65536-None]>
        <Function test_new_bad_port2[65536]>
        <Function test_new_bad_port2[65536-localhost]>
        <Function test_new_bad_port2[65536-1.2.3.4]>
<Package C:\GIT\ptvsd\tests\ptvsd\server>
  <Module test_args.py>
    <Function test_args[launch-file]>
    <Function test_args[launch-module]>
    <Function test_args[launch-code]>
    <Function test_args[attach_socket_cmdline-file]>
    <Function test_args[attach_socket_cmdline-module]>
    <Function test_args[attach_socket_cmdline-code]>
    <Function test_args[attach_socket_import-file]>
    <Function test_args[attach_socket_import-module]>
    <Function test_args[attach_socket_import-code]>
  <Module test_attach.py>
    <Function test_attach[file-break-attachCheckOn-waitOn]>
    <Function test_attach[file-break-attachCheckOn-waitOff]>
    <Function test_attach[file-break-attachCheckOff-waitOn]>
    <Function test_attach[file-break-attachCheckOff-waitOff]>
    <Function test_attach[file-pause-attachCheckOn-waitOn]>
    <Function test_attach[file-pause-attachCheckOn-waitOff]>
    <Function test_attach[file-pause-attachCheckOff-waitOn]>
    <Function test_attach[file-pause-attachCheckOff-waitOff]>
    <Function test_attach[module-break-attachCheckOn-waitOn]>
    <Function test_attach[module-break-attachCheckOn-waitOff]>
    <Function test_attach[module-break-attachCheckOff-waitOn]>
    <Function test_attach[module-break-attachCheckOff-waitOff]>
    <Function test_attach[module-pause-attachCheckOn-waitOn]>
    <Function test_attach[module-pause-attachCheckOn-waitOff]>
    <Function test_attach[module-pause-attachCheckOff-waitOn]>
    <Function test_attach[module-pause-attachCheckOff-waitOff]>
    <Function test_reattach[file-attach_socket_cmdline]>
    <Function test_reattach[file-attach_socket_import]>
    <Function test_reattach[module-attach_socket_cmdline]>
    <Function test_reattach[module-attach_socket_import]>
    <Function test_attaching_by_pid[file-attach_pid]>
    <Function test_attaching_by_pid[module-attach_pid]>
    <Function test_attaching_by_pid[code-attach_pid]>
  <Module test_break_into_dbg.py>
    <Function test_with_wait_for_attach[launch-file]>
    <Function test_with_wait_for_attach[launch-module]>
    <Function test_with_wait_for_attach[launch-code]>
    <Function test_with_wait_for_attach[attach_socket_cmdline-file]>
    <Function test_with_wait_for_attach[attach_socket_cmdline-module]>
    <Function test_with_wait_for_attach[attach_socket_cmdline-code]>
    <Function test_with_wait_for_attach[attach_socket_import-file]>
    <Function test_with_wait_for_attach[attach_socket_import-module]>
    <Function test_with_wait_for_attach[attach_socket_import-code]>
    <Function test_breakpoint_function[launch-file]>
    <Function test_breakpoint_function[launch-module]>
    <Function test_breakpoint_function[launch-code]>
    <Function test_breakpoint_function[attach_socket_cmdline-file]>
    <Function test_breakpoint_function[attach_socket_cmdline-module]>
    <Function test_breakpoint_function[attach_socket_cmdline-code]>
    <Function test_breakpoint_function[attach_socket_import-file]>
    <Function test_breakpoint_function[attach_socket_import-module]>
    <Function test_breakpoint_function[attach_socket_import-code]>
  <Module test_breakpoints.py>
    <Function test_path_with_ampersand[launch-file]>
    <Function test_path_with_ampersand[launch-module]>
    <Function test_path_with_ampersand[attach_socket_cmdline-file]>
    <Function test_path_with_ampersand[attach_socket_cmdline-module]>
    <Function test_path_with_ampersand[attach_socket_import-file]>
    <Function test_path_with_ampersand[attach_socket_import-module]>
    <Function test_path_with_unicode[launch-file]>
    <Function test_path_with_unicode[launch-module]>
    <Function test_path_with_unicode[attach_socket_cmdline-file]>
    <Function test_path_with_unicode[attach_socket_cmdline-module]>
    <Function test_path_with_unicode[attach_socket_import-file]>
    <Function test_path_with_unicode[attach_socket_import-module]>
    <Function test_conditional_breakpoint[launch-file-condition_var]>
    <Function test_conditional_breakpoint[launch-file-hitCondition_#]>
    <Function test_conditional_breakpoint[launch-file-hitCondition_eq]>
    <Function test_conditional_breakpoint[launch-file-hitCondition_gt]>
    <Function test_conditional_breakpoint[launch-file-hitCondition_ge]>
    <Function test_conditional_breakpoint[launch-file-hitCondition_lt]>
    <Function test_conditional_breakpoint[launch-file-hitCondition_le]>
    <Function test_conditional_breakpoint[launch-file-hitCondition_mod]>
    <Function test_conditional_breakpoint[launch-module-condition_var]>
    <Function test_conditional_breakpoint[launch-module-hitCondition_#]>
    <Function test_conditional_breakpoint[launch-module-hitCondition_eq]>
    <Function test_conditional_breakpoint[launch-module-hitCondition_gt]>
    <Function test_conditional_breakpoint[launch-module-hitCondition_ge]>
    <Function test_conditional_breakpoint[launch-module-hitCondition_lt]>
    <Function test_conditional_breakpoint[launch-module-hitCondition_le]>
    <Function test_conditional_breakpoint[launch-module-hitCondition_mod]>
    <Function test_conditional_breakpoint[attach_socket_cmdline-file-condition_var]>
    <Function test_conditional_breakpoint[attach_socket_cmdline-file-hitCondition_#]>
    <Function test_conditional_breakpoint[attach_socket_cmdline-file-hitCondition_eq]>
    <Function test_conditional_breakpoint[attach_socket_cmdline-file-hitCondition_gt]>
    <Function test_conditional_breakpoint[attach_socket_cmdline-file-hitCondition_ge]>
    <Function test_conditional_breakpoint[attach_socket_cmdline-file-hitCondition_lt]>
    <Function test_conditional_breakpoint[attach_socket_cmdline-file-hitCondition_le]>
    <Function test_conditional_breakpoint[attach_socket_cmdline-file-hitCondition_mod]>
    <Function test_conditional_breakpoint[attach_socket_cmdline-module-condition_var]>
    <Function test_conditional_breakpoint[attach_socket_cmdline-module-hitCondition_#]>
    <Function test_conditional_breakpoint[attach_socket_cmdline-module-hitCondition_eq]>
    <Function test_conditional_breakpoint[attach_socket_cmdline-module-hitCondition_gt]>
    <Function test_conditional_breakpoint[attach_socket_cmdline-module-hitCondition_ge]>
    <Function test_conditional_breakpoint[attach_socket_cmdline-module-hitCondition_lt]>
    <Function test_conditional_breakpoint[attach_socket_cmdline-module-hitCondition_le]>
    <Function test_conditional_breakpoint[attach_socket_cmdline-module-hitCondition_mod]>
    <Function test_conditional_breakpoint[attach_socket_import-file-condition_var]>
    <Function test_conditional_breakpoint[attach_socket_import-file-hitCondition_#]>
    <Function test_conditional_breakpoint[attach_socket_import-file-hitCondition_eq]>
    <Function test_conditional_breakpoint[attach_socket_import-file-hitCondition_gt]>
    <Function test_conditional_breakpoint[attach_socket_import-file-hitCondition_ge]>
    <Function test_conditional_breakpoint[attach_socket_import-file-hitCondition_lt]>
    <Function test_conditional_breakpoint[attach_socket_import-file-hitCondition_le]>
    <Function test_conditional_breakpoint[attach_socket_import-file-hitCondition_mod]>
    <Function test_conditional_breakpoint[attach_socket_import-module-condition_var]>
    <Function test_conditional_breakpoint[attach_socket_import-module-hitCondition_#]>
    <Function test_conditional_breakpoint[attach_socket_import-module-hitCondition_eq]>
    <Function test_conditional_breakpoint[attach_socket_import-module-hitCondition_gt]>
    <Function test_conditional_breakpoint[attach_socket_import-module-hitCondition_ge]>
    <Function test_conditional_breakpoint[attach_socket_import-module-hitCondition_lt]>
    <Function test_conditional_breakpoint[attach_socket_import-module-hitCondition_le]>
    <Function test_conditional_breakpoint[attach_socket_import-module-hitCondition_mod]>
    <Function test_crossfile_breakpoint[launch-file]>
    <Function test_crossfile_breakpoint[launch-module]>
    <Function test_crossfile_breakpoint[attach_socket_cmdline-file]>
    <Function test_crossfile_breakpoint[attach_socket_cmdline-module]>
    <Function test_crossfile_breakpoint[attach_socket_import-file]>
    <Function test_crossfile_breakpoint[attach_socket_import-module]>
    <Function test_error_in_condition[launch-file-NameError]>
    <Function test_error_in_condition[launch-file-OtherError]>
    <Function test_error_in_condition[launch-module-NameError]>
    <Function test_error_in_condition[launch-module-OtherError]>
    <Function test_error_in_condition[attach_socket_cmdline-file-NameError]>
    <Function test_error_in_condition[attach_socket_cmdline-file-OtherError]>
    <Function test_error_in_condition[attach_socket_cmdline-module-NameError]>
    <Function test_error_in_condition[attach_socket_cmdline-module-OtherError]>
    <Function test_error_in_condition[attach_socket_import-file-NameError]>
    <Function test_error_in_condition[attach_socket_import-file-OtherError]>
    <Function test_error_in_condition[attach_socket_import-module-NameError]>
    <Function test_error_in_condition[attach_socket_import-module-OtherError]>
    <Function test_log_point[launch-file]>
    <Function test_log_point[launch-module]>
    <Function test_log_point[attach_socket_cmdline-file]>
    <Function test_log_point[attach_socket_cmdline-module]>
    <Function test_log_point[attach_socket_import-file]>
    <Function test_log_point[attach_socket_import-module]>
    <Function test_condition_with_log_point[launch-file]>
    <Function test_condition_with_log_point[launch-module]>
    <Function test_condition_with_log_point[attach_socket_cmdline-file]>
    <Function test_condition_with_log_point[attach_socket_cmdline-module]>
    <Function test_condition_with_log_point[attach_socket_import-file]>
    <Function test_condition_with_log_point[attach_socket_import-module]>
    <Function test_package_launch>
    <Function test_add_and_remove_breakpoint[launch-file]>
    <Function test_add_and_remove_breakpoint[launch-module]>
    <Function test_add_and_remove_breakpoint[attach_socket_cmdline-file]>
    <Function test_add_and_remove_breakpoint[attach_socket_cmdline-module]>
    <Function test_add_and_remove_breakpoint[attach_socket_import-file]>
    <Function test_add_and_remove_breakpoint[attach_socket_import-module]>
    <Function test_invalid_breakpoints[launch-file]>
    <Function test_invalid_breakpoints[launch-module]>
    <Function test_invalid_breakpoints[attach_socket_cmdline-file]>
    <Function test_invalid_breakpoints[attach_socket_cmdline-module]>
    <Function test_invalid_breakpoints[attach_socket_import-file]>
    <Function test_invalid_breakpoints[attach_socket_import-module]>
    <Function test_deep_stacks[launch-file]>
    <Function test_deep_stacks[launch-module]>
    <Function test_deep_stacks[attach_socket_cmdline-file]>
    <Function test_deep_stacks[attach_socket_cmdline-module]>
    <Function test_deep_stacks[attach_socket_import-file]>
    <Function test_deep_stacks[attach_socket_import-module]>
  <Module test_completions.py>
    <Function test_completions_scope[launch-file-done]>
    <Function test_completions_scope[launch-file-in_do_something]>
    <Function test_completions_scope[launch-file-in_some_function]>
    <Function test_completions_scope[launch-module-done]>
    <Function test_completions_scope[launch-module-in_do_something]>
    <Function test_completions_scope[launch-module-in_some_function]>
    <Function test_completions_scope[attach_socket_cmdline-file-done]>
    <Function test_completions_scope[attach_socket_cmdline-file-in_do_something]>
    <Function test_completions_scope[attach_socket_cmdline-file-in_some_function]>
    <Function test_completions_scope[attach_socket_cmdline-module-done]>
    <Function test_completions_scope[attach_socket_cmdline-module-in_do_something]>
    <Function test_completions_scope[attach_socket_cmdline-module-in_some_function]>
    <Function test_completions_scope[attach_socket_import-file-done]>
    <Function test_completions_scope[attach_socket_import-file-in_do_something]>
    <Function test_completions_scope[attach_socket_import-file-in_some_function]>
    <Function test_completions_scope[attach_socket_import-module-done]>
    <Function test_completions_scope[attach_socket_import-module-in_do_something]>
    <Function test_completions_scope[attach_socket_import-module-in_some_function]>
    <Function test_completions_cases[launch-file]>
    <Function test_completions_cases[launch-module]>
    <Function test_completions_cases[attach_socket_cmdline-file]>
    <Function test_completions_cases[attach_socket_cmdline-module]>
    <Function test_completions_cases[attach_socket_import-file]>
    <Function test_completions_cases[attach_socket_import-module]>
  <Module test_disconnect.py>
    <Function test_continue_on_disconnect_for_attach[file-attach_socket_cmdline]>
    <Function test_continue_on_disconnect_for_attach[file-attach_socket_import]>
    <Function test_continue_on_disconnect_for_attach[module-attach_socket_cmdline]>
    <Function test_continue_on_disconnect_for_attach[module-attach_socket_import]>
    <Function test_exit_on_disconnect_for_launch[file-launch]>
    <Function test_exit_on_disconnect_for_launch[module-launch]>
  <Module test_django.py>
    <Function test_django_breakpoint_no_multiproc[launch-code]>
    <Function test_django_breakpoint_no_multiproc[launch-template]>
    <Function test_django_breakpoint_no_multiproc[attach_socket_cmdline-code]>
    <Function test_django_breakpoint_no_multiproc[attach_socket_cmdline-template]>
    <Function test_django_template_exception_no_multiproc[launch]>
    <Function test_django_template_exception_no_multiproc[attach_socket_cmdline]>
    <Function test_django_exception_no_multiproc[launch-handled]>
    <Function test_django_exception_no_multiproc[launch-unhandled]>
    <Function test_django_exception_no_multiproc[attach_socket_cmdline-handled]>
    <Function test_django_exception_no_multiproc[attach_socket_cmdline-unhandled]>
    <Function test_django_breakpoint_multiproc[launch]>
  <Module test_evaluate.py>
    <Function test_variables_and_evaluate[launch-file]>
    <Function test_variables_and_evaluate[launch-module]>
    <Function test_variables_and_evaluate[attach_socket_cmdline-file]>
    <Function test_variables_and_evaluate[attach_socket_cmdline-module]>
    <Function test_variables_and_evaluate[attach_socket_import-file]>
    <Function test_variables_and_evaluate[attach_socket_import-module]>
    <Function test_set_variable[launch-file]>
    <Function test_set_variable[launch-module]>
    <Function test_set_variable[attach_socket_cmdline-file]>
    <Function test_set_variable[attach_socket_cmdline-module]>
    <Function test_set_variable[attach_socket_import-file]>
    <Function test_set_variable[attach_socket_import-module]>
    <Function test_variable_sort[launch-file]>
    <Function test_variable_sort[launch-module]>
    <Function test_variable_sort[attach_socket_cmdline-file]>
    <Function test_variable_sort[attach_socket_cmdline-module]>
    <Function test_variable_sort[attach_socket_import-file]>
    <Function test_variable_sort[attach_socket_import-module]>
    <Function test_return_values[launch-file]>
    <Function test_return_values[launch-module]>
    <Function test_return_values[attach_socket_cmdline-file]>
    <Function test_return_values[attach_socket_cmdline-module]>
    <Function test_return_values[attach_socket_import-file]>
    <Function test_return_values[attach_socket_import-module]>
    <Function test_unicode[launch-file]>
    <Function test_unicode[launch-module]>
    <Function test_unicode[attach_socket_cmdline-file]>
    <Function test_unicode[attach_socket_cmdline-module]>
    <Function test_unicode[attach_socket_import-file]>
    <Function test_unicode[attach_socket_import-module]>
    <Function test_hex_numbers[launch-file]>
    <Function test_hex_numbers[launch-module]>
    <Function test_hex_numbers[attach_socket_cmdline-file]>
    <Function test_hex_numbers[attach_socket_cmdline-module]>
    <Function test_hex_numbers[attach_socket_import-file]>
    <Function test_hex_numbers[attach_socket_import-module]>
  <Module test_exception.py>
    <Function test_vsc_exception_options_raise_with_except[launch-file-uncaughtOn-raisedOn]>
    <Function test_vsc_exception_options_raise_with_except[launch-file-uncaughtOn-raisedOff]>
    <Function test_vsc_exception_options_raise_with_except[launch-file-uncaughtOff-raisedOn]>
    <Function test_vsc_exception_options_raise_with_except[launch-file-uncaughtOff-raisedOff]>
    <Function test_vsc_exception_options_raise_with_except[launch-module-uncaughtOn-raisedOn]>
    <Function test_vsc_exception_options_raise_with_except[launch-module-uncaughtOn-raisedOff]>
    <Function test_vsc_exception_options_raise_with_except[launch-module-uncaughtOff-raisedOn]>
    <Function test_vsc_exception_options_raise_with_except[launch-module-uncaughtOff-raisedOff]>
    <Function test_vsc_exception_options_raise_with_except[attach_socket_cmdline-file-uncaughtOn-raisedOn]>
    <Function test_vsc_exception_options_raise_with_except[attach_socket_cmdline-file-uncaughtOn-raisedOff]>
    <Function test_vsc_exception_options_raise_with_except[attach_socket_cmdline-file-uncaughtOff-raisedOn]>
    <Function test_vsc_exception_options_raise_with_except[attach_socket_cmdline-file-uncaughtOff-raisedOff]>
    <Function test_vsc_exception_options_raise_with_except[attach_socket_cmdline-module-uncaughtOn-raisedOn]>
    <Function test_vsc_exception_options_raise_with_except[attach_socket_cmdline-module-uncaughtOn-raisedOff]>
    <Function test_vsc_exception_options_raise_with_except[attach_socket_cmdline-module-uncaughtOff-raisedOn]>
    <Function test_vsc_exception_options_raise_with_except[attach_socket_cmdline-module-uncaughtOff-raisedOff]>
    <Function test_vsc_exception_options_raise_with_except[attach_socket_import-file-uncaughtOn-raisedOn]>
    <Function test_vsc_exception_options_raise_with_except[attach_socket_import-file-uncaughtOn-raisedOff]>
    <Function test_vsc_exception_options_raise_with_except[attach_socket_import-file-uncaughtOff-raisedOn]>
    <Function test_vsc_exception_options_raise_with_except[attach_socket_import-file-uncaughtOff-raisedOff]>
    <Function test_vsc_exception_options_raise_with_except[attach_socket_import-module-uncaughtOn-raisedOn]>
    <Function test_vsc_exception_options_raise_with_except[attach_socket_import-module-uncaughtOn-raisedOff]>
    <Function test_vsc_exception_options_raise_with_except[attach_socket_import-module-uncaughtOff-raisedOn]>
    <Function test_vsc_exception_options_raise_with_except[attach_socket_import-module-uncaughtOff-raisedOff]>
    <Function test_vsc_exception_options_raise_without_except[launch-file-uncaughtOn-raisedOn]>
    <Function test_vsc_exception_options_raise_without_except[launch-file-uncaughtOn-raisedOff]>
    <Function test_vsc_exception_options_raise_without_except[launch-file-uncaughtOff-raisedOn]>
    <Function test_vsc_exception_options_raise_without_except[launch-file-uncaughtOff-raisedOff]>
    <Function test_vsc_exception_options_raise_without_except[launch-module-uncaughtOn-raisedOn]>
    <Function test_vsc_exception_options_raise_without_except[launch-module-uncaughtOn-raisedOff]>
    <Function test_vsc_exception_options_raise_without_except[launch-module-uncaughtOff-raisedOn]>
    <Function test_vsc_exception_options_raise_without_except[launch-module-uncaughtOff-raisedOff]>
    <Function test_vsc_exception_options_raise_without_except[attach_socket_cmdline-file-uncaughtOn-raisedOn]>
    <Function test_vsc_exception_options_raise_without_except[attach_socket_cmdline-file-uncaughtOn-raisedOff]>
    <Function test_vsc_exception_options_raise_without_except[attach_socket_cmdline-file-uncaughtOff-raisedOn]>
    <Function test_vsc_exception_options_raise_without_except[attach_socket_cmdline-file-uncaughtOff-raisedOff]>
    <Function test_vsc_exception_options_raise_without_except[attach_socket_cmdline-module-uncaughtOn-raisedOn]>
    <Function test_vsc_exception_options_raise_without_except[attach_socket_cmdline-module-uncaughtOn-raisedOff]>
    <Function test_vsc_exception_options_raise_without_except[attach_socket_cmdline-module-uncaughtOff-raisedOn]>
    <Function test_vsc_exception_options_raise_without_except[attach_socket_cmdline-module-uncaughtOff-raisedOff]>
    <Function test_vsc_exception_options_raise_without_except[attach_socket_import-file-uncaughtOn-raisedOn]>
    <Function test_vsc_exception_options_raise_without_except[attach_socket_import-file-uncaughtOn-raisedOff]>
    <Function test_vsc_exception_options_raise_without_except[attach_socket_import-file-uncaughtOff-raisedOn]>
    <Function test_vsc_exception_options_raise_without_except[attach_socket_import-file-uncaughtOff-raisedOff]>
    <Function test_vsc_exception_options_raise_without_except[attach_socket_import-module-uncaughtOn-raisedOn]>
    <Function test_vsc_exception_options_raise_without_except[attach_socket_import-module-uncaughtOn-raisedOff]>
    <Function test_vsc_exception_options_raise_without_except[attach_socket_import-module-uncaughtOff-raisedOn]>
    <Function test_vsc_exception_options_raise_without_except[attach_socket_import-module-uncaughtOff-raisedOff]>
    <Function test_systemexit[launch-file-0-zero-uncaught-raised]>
    <Function test_systemexit[launch-file-0-zero-uncaught]>
    <Function test_systemexit[launch-file-0-zero-raised]>
    <Function test_systemexit[launch-file-0-zero]>
    <Function test_systemexit[launch-file-0-uncaught-raised]>
    <Function test_systemexit[launch-file-0-uncaught]>
    <Function test_systemexit[launch-file-0-raised]>
    <Function test_systemexit[launch-file-0]>
    <Function test_systemexit[launch-file-1-zero-uncaught-raised]>
    <Function test_systemexit[launch-file-1-zero-uncaught]>
    <Function test_systemexit[launch-file-1-zero-raised]>
    <Function test_systemexit[launch-file-1-zero]>
    <Function test_systemexit[launch-file-1-uncaught-raised]>
    <Function test_systemexit[launch-file-1-uncaught]>
    <Function test_systemexit[launch-file-1-raised]>
    <Function test_systemexit[launch-file-1]>
    <Function test_systemexit[launch-file-nan-zero-uncaught-raised]>
    <Function test_systemexit[launch-file-nan-zero-uncaught]>
    <Function test_systemexit[launch-file-nan-zero-raised]>
    <Function test_systemexit[launch-file-nan-zero]>
    <Function test_systemexit[launch-file-nan-uncaught-raised]>
    <Function test_systemexit[launch-file-nan-uncaught]>
    <Function test_systemexit[launch-file-nan-raised]>
    <Function test_systemexit[launch-file-nan]>
    <Function test_systemexit[launch-module-0-zero-uncaught-raised]>
    <Function test_systemexit[launch-module-0-zero-uncaught]>
    <Function test_systemexit[launch-module-0-zero-raised]>
    <Function test_systemexit[launch-module-0-zero]>
    <Function test_systemexit[launch-module-0-uncaught-raised]>
    <Function test_systemexit[launch-module-0-uncaught]>
    <Function test_systemexit[launch-module-0-raised]>
    <Function test_systemexit[launch-module-0]>
    <Function test_systemexit[launch-module-1-zero-uncaught-raised]>
    <Function test_systemexit[launch-module-1-zero-uncaught]>
    <Function test_systemexit[launch-module-1-zero-raised]>
    <Function test_systemexit[launch-module-1-zero]>
    <Function test_systemexit[launch-module-1-uncaught-raised]>
    <Function test_systemexit[launch-module-1-uncaught]>
    <Function test_systemexit[launch-module-1-raised]>
    <Function test_systemexit[launch-module-1]>
    <Function test_systemexit[launch-module-nan-zero-uncaught-raised]>
    <Function test_systemexit[launch-module-nan-zero-uncaught]>
    <Function test_systemexit[launch-module-nan-zero-raised]>
    <Function test_systemexit[launch-module-nan-zero]>
    <Function test_systemexit[launch-module-nan-uncaught-raised]>
    <Function test_systemexit[launch-module-nan-uncaught]>
    <Function test_systemexit[launch-module-nan-raised]>
    <Function test_systemexit[launch-module-nan]>
    <Function test_systemexit[attach_socket_cmdline-file-0-zero-uncaught-raised]>
    <Function test_systemexit[attach_socket_cmdline-file-0-zero-uncaught]>
    <Function test_systemexit[attach_socket_cmdline-file-0-zero-raised]>
    <Function test_systemexit[attach_socket_cmdline-file-0-zero]>
    <Function test_systemexit[attach_socket_cmdline-file-0-uncaught-raised]>
    <Function test_systemexit[attach_socket_cmdline-file-0-uncaught]>
    <Function test_systemexit[attach_socket_cmdline-file-0-raised]>
    <Function test_systemexit[attach_socket_cmdline-file-0]>
    <Function test_systemexit[attach_socket_cmdline-file-1-zero-uncaught-raised]>
    <Function test_systemexit[attach_socket_cmdline-file-1-zero-uncaught]>
    <Function test_systemexit[attach_socket_cmdline-file-1-zero-raised]>
    <Function test_systemexit[attach_socket_cmdline-file-1-zero]>
    <Function test_systemexit[attach_socket_cmdline-file-1-uncaught-raised]>
    <Function test_systemexit[attach_socket_cmdline-file-1-uncaught]>
    <Function test_systemexit[attach_socket_cmdline-file-1-raised]>
    <Function test_systemexit[attach_socket_cmdline-file-1]>
    <Function test_systemexit[attach_socket_cmdline-file-nan-zero-uncaught-raised]>
    <Function test_systemexit[attach_socket_cmdline-file-nan-zero-uncaught]>
    <Function test_systemexit[attach_socket_cmdline-file-nan-zero-raised]>
    <Function test_systemexit[attach_socket_cmdline-file-nan-zero]>
    <Function test_systemexit[attach_socket_cmdline-file-nan-uncaught-raised]>
    <Function test_systemexit[attach_socket_cmdline-file-nan-uncaught]>
    <Function test_systemexit[attach_socket_cmdline-file-nan-raised]>
    <Function test_systemexit[attach_socket_cmdline-file-nan]>
    <Function test_systemexit[attach_socket_cmdline-module-0-zero-uncaught-raised]>
    <Function test_systemexit[attach_socket_cmdline-module-0-zero-uncaught]>
    <Function test_systemexit[attach_socket_cmdline-module-0-zero-raised]>
    <Function test_systemexit[attach_socket_cmdline-module-0-zero]>
    <Function test_systemexit[attach_socket_cmdline-module-0-uncaught-raised]>
    <Function test_systemexit[attach_socket_cmdline-module-0-uncaught]>
    <Function test_systemexit[attach_socket_cmdline-module-0-raised]>
    <Function test_systemexit[attach_socket_cmdline-module-0]>
    <Function test_systemexit[attach_socket_cmdline-module-1-zero-uncaught-raised]>
    <Function test_systemexit[attach_socket_cmdline-module-1-zero-uncaught]>
    <Function test_systemexit[attach_socket_cmdline-module-1-zero-raised]>
    <Function test_systemexit[attach_socket_cmdline-module-1-zero]>
    <Function test_systemexit[attach_socket_cmdline-module-1-uncaught-raised]>
    <Function test_systemexit[attach_socket_cmdline-module-1-uncaught]>
    <Function test_systemexit[attach_socket_cmdline-module-1-raised]>
    <Function test_systemexit[attach_socket_cmdline-module-1]>
    <Function test_systemexit[attach_socket_cmdline-module-nan-zero-uncaught-raised]>
    <Function test_systemexit[attach_socket_cmdline-module-nan-zero-uncaught]>
    <Function test_systemexit[attach_socket_cmdline-module-nan-zero-raised]>
    <Function test_systemexit[attach_socket_cmdline-module-nan-zero]>
    <Function test_systemexit[attach_socket_cmdline-module-nan-uncaught-raised]>
    <Function test_systemexit[attach_socket_cmdline-module-nan-uncaught]>
    <Function test_systemexit[attach_socket_cmdline-module-nan-raised]>
    <Function test_systemexit[attach_socket_cmdline-module-nan]>
    <Function test_systemexit[attach_socket_import-file-0-zero-uncaught-raised]>
    <Function test_systemexit[attach_socket_import-file-0-zero-uncaught]>
    <Function test_systemexit[attach_socket_import-file-0-zero-raised]>
    <Function test_systemexit[attach_socket_import-file-0-zero]>
    <Function test_systemexit[attach_socket_import-file-0-uncaught-raised]>
    <Function test_systemexit[attach_socket_import-file-0-uncaught]>
    <Function test_systemexit[attach_socket_import-file-0-raised]>
    <Function test_systemexit[attach_socket_import-file-0]>
    <Function test_systemexit[attach_socket_import-file-1-zero-uncaught-raised]>
    <Function test_systemexit[attach_socket_import-file-1-zero-uncaught]>
    <Function test_systemexit[attach_socket_import-file-1-zero-raised]>
    <Function test_systemexit[attach_socket_import-file-1-zero]>
    <Function test_systemexit[attach_socket_import-file-1-uncaught-raised]>
    <Function test_systemexit[attach_socket_import-file-1-uncaught]>
    <Function test_systemexit[attach_socket_import-file-1-raised]>
    <Function test_systemexit[attach_socket_import-file-1]>
    <Function test_systemexit[attach_socket_import-file-nan-zero-uncaught-raised]>
    <Function test_systemexit[attach_socket_import-file-nan-zero-uncaught]>
    <Function test_systemexit[attach_socket_import-file-nan-zero-raised]>
    <Function test_systemexit[attach_socket_import-file-nan-zero]>
    <Function test_systemexit[attach_socket_import-file-nan-uncaught-raised]>
    <Function test_systemexit[attach_socket_import-file-nan-uncaught]>
    <Function test_systemexit[attach_socket_import-file-nan-raised]>
    <Function test_systemexit[attach_socket_import-file-nan]>
    <Function test_systemexit[attach_socket_import-module-0-zero-uncaught-raised]>
    <Function test_systemexit[attach_socket_import-module-0-zero-uncaught]>
    <Function test_systemexit[attach_socket_import-module-0-zero-raised]>
    <Function test_systemexit[attach_socket_import-module-0-zero]>
    <Function test_systemexit[attach_socket_import-module-0-uncaught-raised]>
    <Function test_systemexit[attach_socket_import-module-0-uncaught]>
    <Function test_systemexit[attach_socket_import-module-0-raised]>
    <Function test_systemexit[attach_socket_import-module-0]>
    <Function test_systemexit[attach_socket_import-module-1-zero-uncaught-raised]>
    <Function test_systemexit[attach_socket_import-module-1-zero-uncaught]>
    <Function test_systemexit[attach_socket_import-module-1-zero-raised]>
    <Function test_systemexit[attach_socket_import-module-1-zero]>
    <Function test_systemexit[attach_socket_import-module-1-uncaught-raised]>
    <Function test_systemexit[attach_socket_import-module-1-uncaught]>
    <Function test_systemexit[attach_socket_import-module-1-raised]>
    <Function test_systemexit[attach_socket_import-module-1]>
    <Function test_systemexit[attach_socket_import-module-nan-zero-uncaught-raised]>
    <Function test_systemexit[attach_socket_import-module-nan-zero-uncaught]>
    <Function test_systemexit[attach_socket_import-module-nan-zero-raised]>
    <Function test_systemexit[attach_socket_import-module-nan-zero]>
    <Function test_systemexit[attach_socket_import-module-nan-uncaught-raised]>
    <Function test_systemexit[attach_socket_import-module-nan-uncaught]>
    <Function test_systemexit[attach_socket_import-module-nan-raised]>
    <Function test_systemexit[attach_socket_import-module-nan]>
    <Function test_raise_exception_options[launch-file-exceptions0-always]>
    <Function test_raise_exception_options[launch-file-exceptions0-never]>
    <Function test_raise_exception_options[launch-file-exceptions0-unhandled]>
    <Function test_raise_exception_options[launch-file-exceptions0-userUnhandled]>
    <Function test_raise_exception_options[launch-file-exceptions1-always]>
    <Function test_raise_exception_options[launch-file-exceptions1-never]>
    <Function test_raise_exception_options[launch-file-exceptions1-unhandled]>
    <Function test_raise_exception_options[launch-file-exceptions1-userUnhandled]>
    <Function test_raise_exception_options[launch-file-exceptions2-always]>
    <Function test_raise_exception_options[launch-file-exceptions2-never]>
    <Function test_raise_exception_options[launch-file-exceptions2-unhandled]>
    <Function test_raise_exception_options[launch-file-exceptions2-userUnhandled]>
    <Function test_raise_exception_options[launch-file-exceptions3-always]>
    <Function test_raise_exception_options[launch-file-exceptions3-never]>
    <Function test_raise_exception_options[launch-file-exceptions3-unhandled]>
    <Function test_raise_exception_options[launch-file-exceptions3-userUnhandled]>
    <Function test_raise_exception_options[launch-module-exceptions0-always]>
    <Function test_raise_exception_options[launch-module-exceptions0-never]>
    <Function test_raise_exception_options[launch-module-exceptions0-unhandled]>
    <Function test_raise_exception_options[launch-module-exceptions0-userUnhandled]>
    <Function test_raise_exception_options[launch-module-exceptions1-always]>
    <Function test_raise_exception_options[launch-module-exceptions1-never]>
    <Function test_raise_exception_options[launch-module-exceptions1-unhandled]>
    <Function test_raise_exception_options[launch-module-exceptions1-userUnhandled]>
    <Function test_raise_exception_options[launch-module-exceptions2-always]>
    <Function test_raise_exception_options[launch-module-exceptions2-never]>
    <Function test_raise_exception_options[launch-module-exceptions2-unhandled]>
    <Function test_raise_exception_options[launch-module-exceptions2-userUnhandled]>
    <Function test_raise_exception_options[launch-module-exceptions3-always]>
    <Function test_raise_exception_options[launch-module-exceptions3-never]>
    <Function test_raise_exception_options[launch-module-exceptions3-unhandled]>
    <Function test_raise_exception_options[launch-module-exceptions3-userUnhandled]>
    <Function test_raise_exception_options[attach_socket_cmdline-file-exceptions0-always]>
    <Function test_raise_exception_options[attach_socket_cmdline-file-exceptions0-never]>
    <Function test_raise_exception_options[attach_socket_cmdline-file-exceptions0-unhandled]>
    <Function test_raise_exception_options[attach_socket_cmdline-file-exceptions0-userUnhandled]>
    <Function test_raise_exception_options[attach_socket_cmdline-file-exceptions1-always]>
    <Function test_raise_exception_options[attach_socket_cmdline-file-exceptions1-never]>
    <Function test_raise_exception_options[attach_socket_cmdline-file-exceptions1-unhandled]>
    <Function test_raise_exception_options[attach_socket_cmdline-file-exceptions1-userUnhandled]>
    <Function test_raise_exception_options[attach_socket_cmdline-file-exceptions2-always]>
    <Function test_raise_exception_options[attach_socket_cmdline-file-exceptions2-never]>
    <Function test_raise_exception_options[attach_socket_cmdline-file-exceptions2-unhandled]>
    <Function test_raise_exception_options[attach_socket_cmdline-file-exceptions2-userUnhandled]>
    <Function test_raise_exception_options[attach_socket_cmdline-file-exceptions3-always]>
    <Function test_raise_exception_options[attach_socket_cmdline-file-exceptions3-never]>
    <Function test_raise_exception_options[attach_socket_cmdline-file-exceptions3-unhandled]>
    <Function test_raise_exception_options[attach_socket_cmdline-file-exceptions3-userUnhandled]>
    <Function test_raise_exception_options[attach_socket_cmdline-module-exceptions0-always]>
    <Function test_raise_exception_options[attach_socket_cmdline-module-exceptions0-never]>
    <Function test_raise_exception_options[attach_socket_cmdline-module-exceptions0-unhandled]>
    <Function test_raise_exception_options[attach_socket_cmdline-module-exceptions0-userUnhandled]>
    <Function test_raise_exception_options[attach_socket_cmdline-module-exceptions1-always]>
    <Function test_raise_exception_options[attach_socket_cmdline-module-exceptions1-never]>
    <Function test_raise_exception_options[attach_socket_cmdline-module-exceptions1-unhandled]>
    <Function test_raise_exception_options[attach_socket_cmdline-module-exceptions1-userUnhandled]>
    <Function test_raise_exception_options[attach_socket_cmdline-module-exceptions2-always]>
    <Function test_raise_exception_options[attach_socket_cmdline-module-exceptions2-never]>
    <Function test_raise_exception_options[attach_socket_cmdline-module-exceptions2-unhandled]>
    <Function test_raise_exception_options[attach_socket_cmdline-module-exceptions2-userUnhandled]>
    <Function test_raise_exception_options[attach_socket_cmdline-module-exceptions3-always]>
    <Function test_raise_exception_options[attach_socket_cmdline-module-exceptions3-never]>
    <Function test_raise_exception_options[attach_socket_cmdline-module-exceptions3-unhandled]>
    <Function test_raise_exception_options[attach_socket_cmdline-module-exceptions3-userUnhandled]>
    <Function test_raise_exception_options[attach_socket_import-file-exceptions0-always]>
    <Function test_raise_exception_options[attach_socket_import-file-exceptions0-never]>
    <Function test_raise_exception_options[attach_socket_import-file-exceptions0-unhandled]>
    <Function test_raise_exception_options[attach_socket_import-file-exceptions0-userUnhandled]>
    <Function test_raise_exception_options[attach_socket_import-file-exceptions1-always]>
    <Function test_raise_exception_options[attach_socket_import-file-exceptions1-never]>
    <Function test_raise_exception_options[attach_socket_import-file-exceptions1-unhandled]>
    <Function test_raise_exception_options[attach_socket_import-file-exceptions1-userUnhandled]>
    <Function test_raise_exception_options[attach_socket_import-file-exceptions2-always]>
    <Function test_raise_exception_options[attach_socket_import-file-exceptions2-never]>
    <Function test_raise_exception_options[attach_socket_import-file-exceptions2-unhandled]>
    <Function test_raise_exception_options[attach_socket_import-file-exceptions2-userUnhandled]>
    <Function test_raise_exception_options[attach_socket_import-file-exceptions3-always]>
    <Function test_raise_exception_options[attach_socket_import-file-exceptions3-never]>
    <Function test_raise_exception_options[attach_socket_import-file-exceptions3-unhandled]>
    <Function test_raise_exception_options[attach_socket_import-file-exceptions3-userUnhandled]>
    <Function test_raise_exception_options[attach_socket_import-module-exceptions0-always]>
    <Function test_raise_exception_options[attach_socket_import-module-exceptions0-never]>
    <Function test_raise_exception_options[attach_socket_import-module-exceptions0-unhandled]>
    <Function test_raise_exception_options[attach_socket_import-module-exceptions0-userUnhandled]>
    <Function test_raise_exception_options[attach_socket_import-module-exceptions1-always]>
    <Function test_raise_exception_options[attach_socket_import-module-exceptions1-never]>
    <Function test_raise_exception_options[attach_socket_import-module-exceptions1-unhandled]>
    <Function test_raise_exception_options[attach_socket_import-module-exceptions1-userUnhandled]>
    <Function test_raise_exception_options[attach_socket_import-module-exceptions2-always]>
    <Function test_raise_exception_options[attach_socket_import-module-exceptions2-never]>
    <Function test_raise_exception_options[attach_socket_import-module-exceptions2-unhandled]>
    <Function test_raise_exception_options[attach_socket_import-module-exceptions2-userUnhandled]>
    <Function test_raise_exception_options[attach_socket_import-module-exceptions3-always]>
    <Function test_raise_exception_options[attach_socket_import-module-exceptions3-never]>
    <Function test_raise_exception_options[attach_socket_import-module-exceptions3-unhandled]>
    <Function test_raise_exception_options[attach_socket_import-module-exceptions3-userUnhandled]>
    <Function test_success_exitcodes[launch-file-0]>
    <Function test_success_exitcodes[launch-file-3]>
    <Function test_success_exitcodes[launch-module-0]>
    <Function test_success_exitcodes[launch-module-3]>
    <Function test_success_exitcodes[attach_socket_cmdline-file-0]>
    <Function test_success_exitcodes[attach_socket_cmdline-file-3]>
    <Function test_success_exitcodes[attach_socket_cmdline-module-0]>
    <Function test_success_exitcodes[attach_socket_cmdline-module-3]>
    <Function test_success_exitcodes[attach_socket_import-file-0]>
    <Function test_success_exitcodes[attach_socket_import-file-3]>
    <Function test_success_exitcodes[attach_socket_import-module-0]>
    <Function test_success_exitcodes[attach_socket_import-module-3]>
    <Function test_exception_stack[launch-file-default]>
    <Function test_exception_stack[launch-file-all]>
    <Function test_exception_stack[launch-file-10]>
    <Function test_exception_stack[launch-module-default]>
    <Function test_exception_stack[launch-module-all]>
    <Function test_exception_stack[launch-module-10]>
    <Function test_exception_stack[attach_socket_cmdline-file-default]>
    <Function test_exception_stack[attach_socket_cmdline-file-all]>
    <Function test_exception_stack[attach_socket_cmdline-file-10]>
    <Function test_exception_stack[attach_socket_cmdline-module-default]>
    <Function test_exception_stack[attach_socket_cmdline-module-all]>
    <Function test_exception_stack[attach_socket_cmdline-module-10]>
    <Function test_exception_stack[attach_socket_import-file-default]>
    <Function test_exception_stack[attach_socket_import-file-all]>
    <Function test_exception_stack[attach_socket_import-file-10]>
    <Function test_exception_stack[attach_socket_import-module-default]>
    <Function test_exception_stack[attach_socket_import-module-all]>
    <Function test_exception_stack[attach_socket_import-module-10]>
  <Module test_exclude_rules.py>
    <Function test_exceptions_and_exclude_rules[launch-file-RuntimeError-exclude_by_name]>
    <Function test_exceptions_and_exclude_rules[launch-file-RuntimeError-exclude_by_dir]>
    <Function test_exceptions_and_exclude_rules[launch-file-SysExit-exclude_by_name]>
    <Function test_exceptions_and_exclude_rules[launch-file-SysExit-exclude_by_dir]>
    <Function test_exceptions_and_exclude_rules[launch-module-RuntimeError-exclude_by_name]>
    <Function test_exceptions_and_exclude_rules[launch-module-RuntimeError-exclude_by_dir]>
    <Function test_exceptions_and_exclude_rules[launch-module-SysExit-exclude_by_name]>
    <Function test_exceptions_and_exclude_rules[launch-module-SysExit-exclude_by_dir]>
    <Function test_exceptions_and_exclude_rules[attach_socket_cmdline-file-RuntimeError-exclude_by_name]>
    <Function test_exceptions_and_exclude_rules[attach_socket_cmdline-file-RuntimeError-exclude_by_dir]>
    <Function test_exceptions_and_exclude_rules[attach_socket_cmdline-file-SysExit-exclude_by_name]>
    <Function test_exceptions_and_exclude_rules[attach_socket_cmdline-file-SysExit-exclude_by_dir]>
    <Function test_exceptions_and_exclude_rules[attach_socket_cmdline-module-RuntimeError-exclude_by_name]>
    <Function test_exceptions_and_exclude_rules[attach_socket_cmdline-module-RuntimeError-exclude_by_dir]>
    <Function test_exceptions_and_exclude_rules[attach_socket_cmdline-module-SysExit-exclude_by_name]>
    <Function test_exceptions_and_exclude_rules[attach_socket_cmdline-module-SysExit-exclude_by_dir]>
    <Function test_exceptions_and_exclude_rules[attach_socket_import-file-RuntimeError-exclude_by_name]>
    <Function test_exceptions_and_exclude_rules[attach_socket_import-file-RuntimeError-exclude_by_dir]>
    <Function test_exceptions_and_exclude_rules[attach_socket_import-file-SysExit-exclude_by_name]>
    <Function test_exceptions_and_exclude_rules[attach_socket_import-file-SysExit-exclude_by_dir]>
    <Function test_exceptions_and_exclude_rules[attach_socket_import-module-RuntimeError-exclude_by_name]>
    <Function test_exceptions_and_exclude_rules[attach_socket_import-module-RuntimeError-exclude_by_dir]>
    <Function test_exceptions_and_exclude_rules[attach_socket_import-module-SysExit-exclude_by_name]>
    <Function test_exceptions_and_exclude_rules[attach_socket_import-module-SysExit-exclude_by_dir]>
    <Function test_exceptions_and_partial_exclude_rules[launch-file-exclude_code_to_debug]>
    <Function test_exceptions_and_partial_exclude_rules[launch-file-exclude_callback_dir]>
    <Function test_exceptions_and_partial_exclude_rules[launch-module-exclude_code_to_debug]>
    <Function test_exceptions_and_partial_exclude_rules[launch-module-exclude_callback_dir]>
    <Function test_exceptions_and_partial_exclude_rules[attach_socket_cmdline-file-exclude_code_to_debug]>
    <Function test_exceptions_and_partial_exclude_rules[attach_socket_cmdline-file-exclude_callback_dir]>
    <Function test_exceptions_and_partial_exclude_rules[attach_socket_cmdline-module-exclude_code_to_debug]>
    <Function test_exceptions_and_partial_exclude_rules[attach_socket_cmdline-module-exclude_callback_dir]>
    <Function test_exceptions_and_partial_exclude_rules[attach_socket_import-file-exclude_code_to_debug]>
    <Function test_exceptions_and_partial_exclude_rules[attach_socket_import-file-exclude_callback_dir]>
    <Function test_exceptions_and_partial_exclude_rules[attach_socket_import-module-exclude_code_to_debug]>
    <Function test_exceptions_and_partial_exclude_rules[attach_socket_import-module-exclude_callback_dir]>
  <Module test_flask.py>
    <Function test_flask_breakpoint_no_multiproc[launch-code]>
    <Function test_flask_breakpoint_no_multiproc[launch-template]>
    <Function test_flask_breakpoint_no_multiproc[attach_socket_cmdline-code]>
    <Function test_flask_breakpoint_no_multiproc[attach_socket_cmdline-template]>
    <Function test_flask_template_exception_no_multiproc[launch]>
    <Function test_flask_template_exception_no_multiproc[attach_socket_cmdline]>
    <Function test_flask_exception_no_multiproc[launch-handled]>
    <Function test_flask_exception_no_multiproc[launch-unhandled]>
    <Function test_flask_exception_no_multiproc[attach_socket_cmdline-handled]>
    <Function test_flask_exception_no_multiproc[attach_socket_cmdline-unhandled]>
    <Function test_flask_breakpoint_multiproc[launch]>
  <Module test_justmycode.py>
    <Function test_justmycode_frames[launch-file-jmcOn]>
    <Function test_justmycode_frames[launch-file-jmcOff]>
    <Function test_justmycode_frames[launch-module-jmcOn]>
    <Function test_justmycode_frames[launch-module-jmcOff]>
    <Function test_justmycode_frames[attach_socket_cmdline-file-jmcOn]>
    <Function test_justmycode_frames[attach_socket_cmdline-file-jmcOff]>
    <Function test_justmycode_frames[attach_socket_cmdline-module-jmcOn]>
    <Function test_justmycode_frames[attach_socket_cmdline-module-jmcOff]>
    <Function test_justmycode_frames[attach_socket_import-file-jmcOn]>
    <Function test_justmycode_frames[attach_socket_import-file-jmcOff]>
    <Function test_justmycode_frames[attach_socket_import-module-jmcOn]>
    <Function test_justmycode_frames[attach_socket_import-module-jmcOff]>
  <Module test_log.py>
    <Function test_log_cli[launch-file-arg]>
    <Function test_log_cli[launch-file-env]>
    <Function test_log_cli[launch-module-arg]>
    <Function test_log_cli[launch-module-env]>
    <Function test_log_cli[attach_socket_cmdline-file-arg]>
    <Function test_log_cli[attach_socket_cmdline-file-env]>
    <Function test_log_cli[attach_socket_cmdline-module-arg]>
    <Function test_log_cli[attach_socket_cmdline-module-env]>
    <Function test_log_cli[attach_socket_import-file-arg]>
    <Function test_log_cli[attach_socket_import-file-env]>
    <Function test_log_cli[attach_socket_import-module-arg]>
    <Function test_log_cli[attach_socket_import-module-env]>
    <Function test_log_api[file]>
    <Function test_log_api[module]>
  <Module test_multiproc.py>
    <Function test_multiprocessing[file-launch]>
    <Function test_multiprocessing[file-attach_socket_cmdline]>
    <Function test_multiprocessing[module-launch]>
    <Function test_multiprocessing[module-attach_socket_cmdline]>
    <Function test_subprocess[file-launch]>
    <Function test_subprocess[file-attach_socket_cmdline]>
    <Function test_subprocess[module-launch]>
    <Function test_subprocess[module-attach_socket_cmdline]>
    <Function test_autokill[file-launch]>
    <Function test_autokill[file-attach_socket_cmdline]>
    <Function test_autokill[module-launch]>
    <Function test_autokill[module-attach_socket_cmdline]>
    <Function test_argv_quoting[launch-file]>
    <Function test_argv_quoting[launch-module]>
    <Function test_argv_quoting[attach_socket_cmdline-file]>
    <Function test_argv_quoting[attach_socket_cmdline-module]>
    <Function test_argv_quoting[attach_socket_import-file]>
    <Function test_argv_quoting[attach_socket_import-module]>
  <Module test_output.py>
    <Function test_with_no_output[launch-file]>
    <Function test_with_no_output[launch-module]>
    <Function test_with_no_output[attach_socket_cmdline-file]>
    <Function test_with_no_output[attach_socket_cmdline-module]>
    <Function test_with_no_output[attach_socket_import-file]>
    <Function test_with_no_output[attach_socket_import-module]>
    <Function test_with_tab_in_output[launch-file]>
    <Function test_with_tab_in_output[launch-module]>
    <Function test_with_tab_in_output[attach_socket_cmdline-file]>
    <Function test_with_tab_in_output[attach_socket_cmdline-module]>
    <Function test_with_tab_in_output[attach_socket_import-file]>
    <Function test_with_tab_in_output[attach_socket_import-module]>
    <Function test_redirect_output[launch-file-RedirectOutput]>
    <Function test_redirect_output[launch-file]>
    <Function test_redirect_output[launch-module-RedirectOutput]>
    <Function test_redirect_output[launch-module]>
    <Function test_redirect_output[attach_socket_cmdline-file-RedirectOutput]>
    <Function test_redirect_output[attach_socket_cmdline-file]>
    <Function test_redirect_output[attach_socket_cmdline-module-RedirectOutput]>
    <Function test_redirect_output[attach_socket_cmdline-module]>
    <Function test_redirect_output[attach_socket_import-file-RedirectOutput]>
    <Function test_redirect_output[attach_socket_import-file]>
    <Function test_redirect_output[attach_socket_import-module-RedirectOutput]>
    <Function test_redirect_output[attach_socket_import-module]>
  <Module test_parse_args.py>
    <Function test_targets[file]>
    <Function test_targets[module]>
    <Function test_targets[code]>
    <Function test_targets[client-file]>
    <Function test_targets[client-module]>
    <Function test_targets[client-code]>
    <Function test_targets[wait-file]>
    <Function test_targets[wait-module]>
    <Function test_targets[wait-code]>
    <Function test_targets[wait-client-file]>
    <Function test_targets[wait-client-module]>
    <Function test_targets[wait-client-code]>
    <Function test_targets[nodebug-file]>
    <Function test_targets[nodebug-module]>
    <Function test_targets[nodebug-code]>
    <Function test_targets[nodebug-client-file]>
    <Function test_targets[nodebug-client-module]>
    <Function test_targets[nodebug-client-code]>
    <Function test_targets[nodebug-wait-file]>
    <Function test_targets[nodebug-wait-module]>
    <Function test_targets[nodebug-wait-code]>
    <Function test_targets[nodebug-wait-client-file]>
    <Function test_targets[nodebug-wait-client-module]>
    <Function test_targets[nodebug-wait-client-code]>
    <Function test_targets[multiproc-file]>
    <Function test_targets[multiproc-module]>
    <Function test_targets[multiproc-code]>
    <Function test_targets[multiproc-client-file]>
    <Function test_targets[multiproc-client-module]>
    <Function test_targets[multiproc-client-code]>
    <Function test_targets[multiproc-wait-file]>
    <Function test_targets[multiproc-wait-module]>
    <Function test_targets[multiproc-wait-code]>
    <Function test_targets[multiproc-wait-client-file]>
    <Function test_targets[multiproc-wait-client-module]>
    <Function test_targets[multiproc-wait-client-code]>
    <Function test_targets[multiproc-nodebug-file]>
    <Function test_targets[multiproc-nodebug-module]>
    <Function test_targets[multiproc-nodebug-code]>
    <Function test_targets[multiproc-nodebug-client-file]>
    <Function test_targets[multiproc-nodebug-client-module]>
    <Function test_targets[multiproc-nodebug-client-code]>
    <Function test_targets[multiproc-nodebug-wait-file]>
    <Function test_targets[multiproc-nodebug-wait-module]>
    <Function test_targets[multiproc-nodebug-wait-code]>
    <Function test_targets[multiproc-nodebug-wait-client-file]>
    <Function test_targets[multiproc-nodebug-wait-client-module]>
    <Function test_targets[multiproc-nodebug-wait-client-code]>
    <Function test_targets[extra-file]>
    <Function test_targets[extra-module]>
    <Function test_targets[extra-code]>
    <Function test_targets[extra-client-file]>
    <Function test_targets[extra-client-module]>
    <Function test_targets[extra-client-code]>
    <Function test_targets[extra-wait-file]>
    <Function test_targets[extra-wait-module]>
    <Function test_targets[extra-wait-code]>
    <Function test_targets[extra-wait-client-file]>
    <Function test_targets[extra-wait-client-module]>
    <Function test_targets[extra-wait-client-code]>
    <Function test_targets[extra-nodebug-file]>
    <Function test_targets[extra-nodebug-module]>
    <Function test_targets[extra-nodebug-code]>
    <Function test_targets[extra-nodebug-client-file]>
    <Function test_targets[extra-nodebug-client-module]>
    <Function test_targets[extra-nodebug-client-code]>
    <Function test_targets[extra-nodebug-wait-file]>
    <Function test_targets[extra-nodebug-wait-module]>
    <Function test_targets[extra-nodebug-wait-code]>
    <Function test_targets[extra-nodebug-wait-client-file]>
    <Function test_targets[extra-nodebug-wait-client-module]>
    <Function test_targets[extra-nodebug-wait-client-code]>
    <Function test_targets[extra-multiproc-file]>
    <Function test_targets[extra-multiproc-module]>
    <Function test_targets[extra-multiproc-code]>
    <Function test_targets[extra-multiproc-client-file]>
    <Function test_targets[extra-multiproc-client-module]>
    <Function test_targets[extra-multiproc-client-code]>
    <Function test_targets[extra-multiproc-wait-file]>
    <Function test_targets[extra-multiproc-wait-module]>
    <Function test_targets[extra-multiproc-wait-code]>
    <Function test_targets[extra-multiproc-wait-client-file]>
    <Function test_targets[extra-multiproc-wait-client-module]>
    <Function test_targets[extra-multiproc-wait-client-code]>
    <Function test_targets[extra-multiproc-nodebug-file]>
    <Function test_targets[extra-multiproc-nodebug-module]>
    <Function test_targets[extra-multiproc-nodebug-code]>
    <Function test_targets[extra-multiproc-nodebug-client-file]>
    <Function test_targets[extra-multiproc-nodebug-client-module]>
    <Function test_targets[extra-multiproc-nodebug-client-code]>
    <Function test_targets[extra-multiproc-nodebug-wait-file]>
    <Function test_targets[extra-multiproc-nodebug-wait-module]>
    <Function test_targets[extra-multiproc-nodebug-wait-code]>
    <Function test_targets[extra-multiproc-nodebug-wait-client-file]>
    <Function test_targets[extra-multiproc-nodebug-wait-client-module]>
    <Function test_targets[extra-multiproc-nodebug-wait-client-code]>
    <Function test_unsupported_arg>
    <Function test_host_required>
    <Function test_host_empty>
    <Function test_port_default>
  <Module test_path_mapping.py>
    <Function test_client_ide_from_path_mapping_linux_backend[launch-file-True]>
    <Function test_client_ide_from_path_mapping_linux_backend[launch-module-True]>
    <Function test_client_ide_from_path_mapping_linux_backend[attach_socket_cmdline-file-True]>
    <Function test_client_ide_from_path_mapping_linux_backend[attach_socket_cmdline-module-True]>
    <Function test_client_ide_from_path_mapping_linux_backend[attach_socket_import-file-True]>
    <Function test_client_ide_from_path_mapping_linux_backend[attach_socket_import-module-True]>
    <Function test_with_dot_remote_root[launch-file]>
    <Function test_with_dot_remote_root[launch-module]>
    <Function test_with_dot_remote_root[attach_socket_cmdline-file]>
    <Function test_with_dot_remote_root[attach_socket_cmdline-module]>
    <Function test_with_dot_remote_root[attach_socket_import-file]>
    <Function test_with_dot_remote_root[attach_socket_import-module]>
    <Function test_with_path_mappings[launch-file]>
    <Function test_with_path_mappings[launch-module]>
    <Function test_with_path_mappings[attach_socket_cmdline-file]>
    <Function test_with_path_mappings[attach_socket_cmdline-module]>
    <Function test_with_path_mappings[attach_socket_import-file]>
    <Function test_with_path_mappings[attach_socket_import-module]>
  <Module test_run.py>
    <Function test_run[launch-file]>
    <Function test_run[launch-module]>
    <Function test_run[launch-code]>
    <Function test_run[attach_socket_cmdline-file]>
    <Function test_run[attach_socket_cmdline-module]>
    <Function test_run[attach_socket_cmdline-code]>
    <Function test_run[attach_socket_import-file]>
    <Function test_run[attach_socket_import-module]>
    <Function test_run[attach_socket_import-code]>
    <Function test_run_submodule>
    <Function test_nodebug[file]>
    <Function test_nodebug[module]>
    <Function test_nodebug[code]>
    <Function test_run_vs[script]>
    <Function test_run_vs[module]>
  <Module test_set_expression.py>
    <Function test_set_expression[launch-file]>
    <Function test_set_expression[launch-module]>
    <Function test_set_expression[attach_socket_cmdline-file]>
    <Function test_set_expression[attach_socket_cmdline-module]>
    <Function test_set_expression[attach_socket_import-file]>
    <Function test_set_expression[attach_socket_import-module]>
  <Module test_start_stop.py>
    <Function test_wait_on_normal_exit_enabled[file-launch]>
    <Function test_wait_on_normal_exit_enabled[module-launch]>
    <Function test_wait_on_abnormal_exit_enabled[file-launch]>
    <Function test_wait_on_abnormal_exit_enabled[module-launch]>
    <Function test_exit_normally_with_wait_on_abnormal_exit_enabled[file-launch]>
    <Function test_exit_normally_with_wait_on_abnormal_exit_enabled[module-launch]>
  <Module test_step.py>
    <Function test_set_next_statement[launch-file]>
    <Function test_set_next_statement[launch-module]>
    <Function test_set_next_statement[attach_socket_cmdline-file]>
    <Function test_set_next_statement[attach_socket_cmdline-module]>
    <Function test_set_next_statement[attach_socket_import-file]>
    <Function test_set_next_statement[attach_socket_import-module]>
  <Module test_stop_on_entry.py>
    <Function test_stop_on_entry[file-with_breakpoint-launch]>
    <Function test_stop_on_entry[file-launch]>
    <Function test_stop_on_entry[module-with_breakpoint-launch]>
    <Function test_stop_on_entry[module-launch]>
  <Module test_threads.py>
    <Function test_thread_count[launch-file-1]>
    <Function test_thread_count[launch-file-3]>
    <Function test_thread_count[launch-module-1]>
    <Function test_thread_count[launch-module-3]>
    <Function test_thread_count[attach_socket_cmdline-file-1]>
    <Function test_thread_count[attach_socket_cmdline-file-3]>
    <Function test_thread_count[attach_socket_cmdline-module-1]>
    <Function test_thread_count[attach_socket_cmdline-module-3]>
    <Function test_thread_count[attach_socket_import-file-1]>
    <Function test_thread_count[attach_socket_import-file-3]>
    <Function test_thread_count[attach_socket_import-module-1]>
    <Function test_thread_count[attach_socket_import-module-3]>
    <Function test_debug_this_thread[launch-file]>
    <Function test_debug_this_thread[launch-module]>
    <Function test_debug_this_thread[attach_socket_cmdline-file]>
    <Function test_debug_this_thread[attach_socket_cmdline-module]>
    <Function test_debug_this_thread[attach_socket_import-file]>
    <Function test_debug_this_thread[attach_socket_import-module]>
  <Module test_vs_specific.py>
    <Function test_stack_format[launch-file-True-True]>
    <Function test_stack_format[launch-file-True-False]>
    <Function test_stack_format[launch-file-False-True]>
    <Function test_stack_format[launch-file-False-False]>
    <Function test_stack_format[launch-module-True-True]>
    <Function test_stack_format[launch-module-True-False]>
    <Function test_stack_format[launch-module-False-True]>
    <Function test_stack_format[launch-module-False-False]>
    <Function test_stack_format[attach_socket_cmdline-file-True-True]>
    <Function test_stack_format[attach_socket_cmdline-file-True-False]>
    <Function test_stack_format[attach_socket_cmdline-file-False-True]>
    <Function test_stack_format[attach_socket_cmdline-file-False-False]>
    <Function test_stack_format[attach_socket_cmdline-module-True-True]>
    <Function test_stack_format[attach_socket_cmdline-module-True-False]>
    <Function test_stack_format[attach_socket_cmdline-module-False-True]>
    <Function test_stack_format[attach_socket_cmdline-module-False-False]>
    <Function test_stack_format[attach_socket_import-file-True-True]>
    <Function test_stack_format[attach_socket_import-file-True-False]>
    <Function test_stack_format[attach_socket_import-file-False-True]>
    <Function test_stack_format[attach_socket_import-file-False-False]>
    <Function test_stack_format[attach_socket_import-module-True-True]>
    <Function test_stack_format[attach_socket_import-module-True-False]>
    <Function test_stack_format[attach_socket_import-module-False-True]>
    <Function test_stack_format[attach_socket_import-module-False-False]>
    <Function test_module_events[launch-file]>
    <Function test_module_events[launch-module]>
    <Function test_module_events[attach_socket_cmdline-file]>
    <Function test_module_events[attach_socket_cmdline-module]>
    <Function test_module_events[attach_socket_import-file]>
    <Function test_module_events[attach_socket_import-module]>
<Package C:\GIT\ptvsd\tests\tests>
  <Module test_patterns.py>
    <Function test_value[x0]>
    <Function test_value[True]>
    <Function test_value[False]>
    <Function test_value[0]>
    <Function test_value[-1]>
    <Function test_value[-1.0]>
    <Function test_value[1.23]>
    <Function test_value[abc0]>
    <Function test_value[abcd0]>
    <Function test_value[abc1]>
    <Function test_value[abcd1]>
    <Function test_value[x11]>
    <Function test_value[x12]>
    <Function test_value[x13]>
    <Function test_value[x14]>
    <Function test_value[x15]>
    <Function test_value[x16]>
    <Function test_none>
    <Function test_equal>
    <Function test_same>
    <Function test_inverse>
    <Function test_either>
    <Function test_in_range>
    <Function test_str>
    <Function test_str_matching>
    <Function test_list>
    <Function test_dict>
    <Function test_such_that>
    <Function test_error>
    <Function test_recursive>
  <Module test_timeline.py>
    <Function test_occurrences>
    <Function test_event>
    <Function test_request_response[success]>
    <Function test_request_response[failure]>
    <Function test_after>
    <Function test_before>
    <Function test_and>
    <Function test_or>
    <Function test_xor>
    <Function test_conditional>
    <Function test_lower_bound>
    <Function test_frozen>
    <Function test_unobserved>
    <Function test_new>
    <Function test_concurrency[mark_then_wait]>
    <Function test_concurrency[wait_then_mark]>

============================================ no tests ran in 0.68 seconds =============================================

Metadata

Metadata

Assignees

Labels

area-testingbugIssue identified by VS Code Team member as probable bugimportantIssue identified as high-priorityregressionBug didn't exist in a previous release

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions