Datasets:

Modalities:
Tabular
Text
Formats:
json
Size:
< 1K
ArXiv:
DOI:
Libraries:
Datasets
Dask
galtimur's picture
v1 of the dataset
643999a
raw
history blame
63 kB
{"language": "Python", "id": 88, "repo_owner": "hugsy", "repo_name": "gef", "head_branch": "main", "workflow_name": "CI Test for GEF", "workflow_filename": "run-tests.yml", "workflow_path": ".github/workflows/run-tests.yml", "contributor": "Angelo942", "sha_fail": "1b22eb71da460e7d3a301842f65c256b920f6195", "sha_success": "a5bb1bce7421428c7c5bd36344708c7a418baa87", "workflow": "name: CI Test for GEF\n\non:\n push:\n branches:\n - main\n\n pull_request:\n branches:\n - main\n\njobs:\n build:\n strategy:\n fail-fast: false\n matrix:\n os:\n - ubuntu-22.04\n - ubuntu-20.04\n name: \"Run Unit tests on ${{ matrix.os }}\"\n runs-on: ${{ matrix.os }}\n defaults:\n run:\n shell: bash\n\n steps:\n - uses: actions/checkout@v3\n\n - name: Install python and toolchain\n run: |\n sudo apt-get update\n sudo apt-get install -y gdb-multiarch python3-dev python3-pip python3-wheel python3-setuptools git cmake gcc g++ pkg-config libglib2.0-dev gdbserver qemu-user\n sudo python3 -m pip install --upgrade pip\n\n - name: Set runtime environment variables\n run: |\n echo PY_VER=`gdb -q -nx -ex \"pi print('.'.join(map(str, sys.version_info[:2])))\" -ex quit` >> $GITHUB_ENV\n echo GEF_CI_NB_CPU=`grep -c ^processor /proc/cpuinfo` >> $GITHUB_ENV\n echo GEF_CI_ARCH=`uname --processor` >> $GITHUB_ENV\n echo GEF_CI_CACHE_DIR=`python3 -m pip cache dir` >> $GITHUB_ENV\n\n - name: Cache dependencies\n uses: actions/cache@v3\n id: cache-deps\n env:\n cache-name: cache-deps\n with:\n key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}\n path: ${{ env.GEF_CI_CACHE_DIR }}\n restore-keys:\n ${{ runner.os }}-pip-${{ env.cache-name }}-\n ${{ runner.os }}-pip-\n ${{ runner.os }}-${{ env.cache-name }}-\n ${{ runner.os }}-\n\n - name: Install Python Requirements\n run: |\n mkdir -p ${{ env.GEF_CI_CACHE_DIR }}\n python${{ env.PY_VER }} -m pip install --user --upgrade -r tests/requirements.txt\n\n - name: Setup GEF\n run: |\n echo \"source $(pwd)/gef.py\" > ~/.gdbinit\n gdb -q -ex 'gef missing' -ex 'gef help' -ex 'gef config' -ex start -ex continue -ex quit /bin/pwd\n\n - name: Run Tests\n run: |\n make -C tests/binaries -j ${{ env.GEF_CI_NB_CPU }}\n python${{ env.PY_VER }} -m pytest --forked -n ${{ env.GEF_CI_NB_CPU }} -v -k \"not benchmark\" tests/\n", "logs": [{"step_name": "Run Unit tests on ubuntu-22.04/8_Run Tests.txt", "log": "##[group]Run make -C tests/binaries -j 4\n\u001b[36;1mmake -C tests/binaries -j 4\u001b[0m\n\u001b[36;1mpython3.10 -m pytest --forked -n 4 -v -k \"not benchmark\" tests/\u001b[0m\nshell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}\nenv:\n PY_VER: 3.10\n GEF_CI_NB_CPU: 4\n GEF_CI_ARCH: x86_64\n GEF_CI_CACHE_DIR: /home/runner/.cache/pip\n##[endgroup]\nmake: Entering directory '/home/runner/work/gef/gef/tests/binaries'\n[+] Building '/tmp/bss.out'\n[+] Building '/tmp/canary.out'\n[+] Building '/tmp/checksec-no-canary.out'\n[+] Building '/tmp/checksec-no-nx.out'\n[+] Building '/tmp/checksec-no-pie.out'\n[+] Building '/tmp/default.out'\n[+] Building '/tmp/format-string-helper.out'\n[+] Building '/tmp/heap-analysis.out'\n[+] Building '/tmp/heap-bins.out'\n[+] Building '/tmp/heap-fastbins.out'\n[+] Building '/tmp/heap-multiple-heaps.out'\n[+] Building '/tmp/heap-non-main.out'\n[+] Building '/tmp/heap-tcache.out'\n[+] Building '/tmp/heap.out'\n[+] Building '/tmp/memwatch.out'\n[+] Building '/tmp/mmap-known-address.out'\n[+] Building '/tmp/nested.out'\n[+] Building '/tmp/nested2.out'\n[+] Building '/tmp/pattern.out'\n[+] Building '/tmp/pcustom.out'\n[+] Building '/tmp/class.out'\nmake: Leaving directory '/home/runner/work/gef/gef/tests/binaries'\n/home/runner/.local/lib/python3.10/site-packages/pytest_benchmark/logger.py:46: PytestBenchmarkWarning: Benchmarks are automatically disabled because xdist plugin is active.Benchmarks cannot be performed reliably in a parallelized environment.\n warner(PytestBenchmarkWarning(text))\n============================= test session starts ==============================\nplatform linux -- Python 3.10.12, pytest-7.4.4, pluggy-1.3.0 -- /usr/bin/python3.10\ncachedir: .pytest_cache\nbenchmark: 4.0.0 (defaults: timer=time.perf_counter disable_gc=False min_rounds=5 min_time=0.000005 max_time=1.0 calibration_precision=10 warmup=False warmup_iterations=100000)\nrootdir: /home/runner/work/gef/gef/tests\nconfigfile: pytest.ini\nplugins: benchmark-4.0.0, forked-1.6.0, xdist-3.5.0, cov-4.1.0\ncreated: 4/4 workers\n4 workers [155 items]\n\nscheduling tests via LoadScheduling\n\ntests/commands/checksec.py::ChecksecCommand::test_cmd_checksec \ntests/api/gef_session.py::GefSessionApi::test_func_auxiliary_vector \ntests/api/misc.py::MiscFunctionTest::test_func_parse_permissions \ntests/api/deprecated.py::GefFuncDeprecatedApi::test_deprecated_elf_values \n[gw1] [ 0%] PASSED tests/api/gef_session.py::GefSessionApi::test_func_auxiliary_vector \ntests/api/gef_session.py::GefSessionApi::test_func_get_filepath \n[gw3] [ 1%] PASSED tests/commands/checksec.py::ChecksecCommand::test_cmd_checksec \ntests/commands/dereference.py::DereferenceCommand::test_cmd_dereference \n[gw1] [ 1%] PASSED tests/api/gef_session.py::GefSessionApi::test_func_get_filepath \ntests/api/gef_session.py::GefSessionApi::test_func_get_pid \n[gw2] [ 2%] PASSED tests/api/misc.py::MiscFunctionTest::test_func_parse_permissions \ntests/api/misc.py::MiscFunctionTest::test_func_show_last_exception \n[gw1] [ 3%] PASSED tests/api/gef_session.py::GefSessionApi::test_func_get_pid \ntests/api/gef_session.py::GefSessionApi::test_root_dir_local \n[gw3] [ 3%] PASSED tests/commands/dereference.py::DereferenceCommand::test_cmd_dereference \ntests/commands/dereference.py::DereferenceCommand::test_cmd_dereference_backwards \n[gw1] [ 4%] PASSED tests/api/gef_session.py::GefSessionApi::test_root_dir_local \ntests/api/gef_session.py::GefSessionApi::test_root_dir_qemu \n[gw2] [ 5%] PASSED tests/api/misc.py::MiscFunctionTest::test_func_show_last_exception \ntests/api/misc.py::MiscFunctionTest::test_func_update_gef \n[gw2] [ 5%] SKIPPED tests/api/misc.py::MiscFunctionTest::test_func_update_gef \ntests/api/misc.py::MiscFunctionTest::test_func_which \n[gw1] [ 6%] PASSED tests/api/gef_session.py::GefSessionApi::test_root_dir_qemu \ntests/api/gef_session.py::GefSessionApi::test_root_dir_remote \n[gw3] [ 7%] PASSED tests/commands/dereference.py::DereferenceCommand::test_cmd_dereference_backwards \ntests/commands/dereference.py::DereferenceCommand::test_cmd_dereference_forwards \n[gw2] [ 7%] PASSED tests/api/misc.py::MiscFunctionTest::test_func_which \ntests/commands/aliases.py::AliasesCommand::test_cmd_aliases \n[gw3] [ 8%] PASSED tests/commands/dereference.py::DereferenceCommand::test_cmd_dereference_forwards \ntests/commands/edit_flags.py::EditFlagsCommand::test_cmd_edit_flags_disable \n[gw1] [ 9%] PASSED tests/api/gef_session.py::GefSessionApi::test_root_dir_remote \ntests/api/misc.py::MiscFunctionTest::test_func_gef_convenience \n[gw1] [ 9%] PASSED tests/api/misc.py::MiscFunctionTest::test_func_gef_convenience \ntests/api/misc.py::MiscFunctionTest::test_func_parse_address \n[gw2] [ 10%] PASSED tests/commands/aliases.py::AliasesCommand::test_cmd_aliases \ntests/commands/aslr.py::AslrCommand::test_cmd_aslr_show \n[gw3] [ 10%] PASSED tests/commands/edit_flags.py::EditFlagsCommand::test_cmd_edit_flags_disable \ntests/commands/edit_flags.py::EditFlagsCommand::test_cmd_edit_flags_enable \n[gw0] [ 11%] PASSED tests/api/deprecated.py::GefFuncDeprecatedApi::test_deprecated_elf_values \ntests/api/gef_arch.py::GefArchApi::test_func_gef_arch_ptrsize \n[gw2] [ 12%] PASSED tests/commands/aslr.py::AslrCommand::test_cmd_aslr_show \ntests/commands/aslr.py::AslrCommand::test_cmd_aslr_toggle \n[gw1] [ 12%] PASSED tests/api/misc.py::MiscFunctionTest::test_func_parse_address \ntests/api/misc.py::MiscFunctionTest::test_func_parse_maps \n[gw0] [ 13%] PASSED tests/api/gef_arch.py::GefArchApi::test_func_gef_arch_ptrsize \ntests/api/gef_arch.py::GefArchApi::test_func_reset_architecture \n[gw3] [ 14%] PASSED tests/commands/edit_flags.py::EditFlagsCommand::test_cmd_edit_flags_enable \ntests/commands/edit_flags.py::EditFlagsCommand::test_cmd_edit_flags_toggle \n[gw0] [ 14%] PASSED tests/api/gef_arch.py::GefArchApi::test_func_reset_architecture \ntests/api/gef_disasemble.py::GefDisassembleApiFunction::test_func_gef_disassemble \n[gw2] [ 15%] PASSED tests/commands/aslr.py::AslrCommand::test_cmd_aslr_toggle \ntests/commands/canary.py::CanaryCommand::test_cmd_canary \n[gw0] [ 16%] PASSED tests/api/gef_disasemble.py::GefDisassembleApiFunction::test_func_gef_disassemble \ntests/api/gef_disasemble.py::GefDisassembleApiFunction::test_func_gef_disassemble_page_border \n[gw3] [ 16%] PASSED tests/commands/edit_flags.py::EditFlagsCommand::test_cmd_edit_flags_toggle \ntests/commands/elf_info.py::ElfInfoCommand::test_cmd_elf_info \n[gw0] [ 17%] PASSED tests/api/gef_disasemble.py::GefDisassembleApiFunction::test_func_gef_disassemble_page_border \ntests/api/gef_heap.py::GefHeapApi::test_class_glibcarena_main_arena \n[gw3] [ 18%] PASSED tests/commands/elf_info.py::ElfInfoCommand::test_cmd_elf_info \ntests/commands/entry_break.py::EntryBreakCommand::test_cmd_entry_break \n[gw2] [ 18%] PASSED tests/commands/canary.py::CanaryCommand::test_cmd_canary \ntests/commands/canary.py::CanaryCommand::test_overwrite_canary \n[gw3] [ 19%] PASSED tests/commands/entry_break.py::EntryBreakCommand::test_cmd_entry_break \ntests/commands/heap.py::HeapCommand::test_cmd_heap_bins_tcache_all \n[gw2] [ 20%] PASSED tests/commands/canary.py::CanaryCommand::test_overwrite_canary \ntests/commands/format_string_helper.py::FormatStringHelperCommand::test_cmd_format_string_helper \n[gw0] [ 20%] PASSED tests/api/gef_heap.py::GefHeapApi::test_class_glibcarena_main_arena \ntests/api/gef_heap.py::GefHeapApi::test_func_gef_heap_csize2tidx \n[gw2] [ 21%] PASSED tests/commands/format_string_helper.py::FormatStringHelperCommand::test_cmd_format_string_helper \ntests/commands/functions.py::FunctionsCommand::test_cmd_functions \n[gw2] [ 21%] PASSED tests/commands/functions.py::FunctionsCommand::test_cmd_functions \ntests/commands/gef.py::GefCommand::test_cmd_gef \n[gw1] [ 22%] PASSED tests/api/misc.py::MiscFunctionTest::test_func_parse_maps \ntests/commands/gef.py::GefCommand::test_cmd_gef_run_and_run \n[gw2] [ 23%] PASSED tests/commands/gef.py::GefCommand::test_cmd_gef \ntests/commands/gef.py::GefCommand::test_cmd_gef_config \n[gw3] [ 23%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_bins_tcache_all \ntests/commands/heap.py::HeapCommand::test_cmd_heap_bins_unsorted \n[gw2] [ 24%] PASSED tests/commands/gef.py::GefCommand::test_cmd_gef_config \ntests/commands/gef.py::GefCommand::test_cmd_gef_config_get \n[gw1] [ 25%] PASSED tests/commands/gef.py::GefCommand::test_cmd_gef_run_and_run \ntests/commands/gef.py::GefCommand::test_cmd_gef_save \n[gw2] [ 25%] PASSED tests/commands/gef.py::GefCommand::test_cmd_gef_config_get \ntests/commands/gef.py::GefCommand::test_cmd_gef_config_set \n[gw3] [ 26%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_bins_unsorted \ntests/commands/heap.py::HeapCommand::test_cmd_heap_chunk_no_arg \n[gw2] [ 27%] PASSED tests/commands/gef.py::GefCommand::test_cmd_gef_config_set \ntests/commands/gef.py::GefCommand::test_cmd_gef_help \n[gw1] [ 27%] PASSED tests/commands/gef.py::GefCommand::test_cmd_gef_save \ntests/commands/gef_remote.py::GefRemoteCommand::test_cmd_gef_remote \n[gw2] [ 28%] PASSED tests/commands/gef.py::GefCommand::test_cmd_gef_help \ntests/commands/gef.py::GefCommand::test_cmd_gef_install \n[gw3] [ 29%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_chunk_no_arg \ntests/commands/heap.py::HeapCommand::test_cmd_heap_chunk_with_number \n[gw2] [ 29%] PASSED tests/commands/gef.py::GefCommand::test_cmd_gef_install \ntests/commands/heap.py::HeapCommand::test_cmd_heap_set_arena \n[gw0] [ 30%] PASSED tests/api/gef_heap.py::GefHeapApi::test_func_gef_heap_csize2tidx \ntests/api/gef_heap.py::GefHeapApi::test_func_gef_heap_malloc_align_address \n[gw3] [ 30%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_chunk_with_number \ntests/commands/heap.py::HeapCommand::test_cmd_heap_chunks \n[gw1] [ 31%] PASSED tests/commands/gef_remote.py::GefRemoteCommand::test_cmd_gef_remote \ntests/commands/gef_remote.py::GefRemoteCommand::test_cmd_gef_remote_qemu_user \n[gw2] [ 32%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_set_arena \ntests/commands/heap_analysis.py::HeapAnalysisCommand::test_cmd_heap_analysis \n[gw1] [ 32%] PASSED tests/commands/gef_remote.py::GefRemoteCommand::test_cmd_gef_remote_qemu_user \ntests/commands/gef_remote.py::GefRemoteCommand::test_cmd_target_remote \n[gw2] [ 33%] PASSED tests/commands/heap_analysis.py::HeapAnalysisCommand::test_cmd_heap_analysis \ntests/commands/hexdump.py::HexdumpCommand::test_cmd_hexdump \n[gw3] [ 34%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_chunks \ntests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_max_size_filter \n[gw1] [ 34%] PASSED tests/commands/gef_remote.py::GefRemoteCommand::test_cmd_target_remote \ntests/commands/got.py::GotCommand::test_cmd_got \n[gw0] [ 35%] PASSED tests/api/gef_heap.py::GefHeapApi::test_func_gef_heap_malloc_align_address \ntests/api/gef_heap.py::GefHeapApi::test_func_gef_heap_tidx2size \n[gw1] [ 36%] PASSED tests/commands/got.py::GotCommand::test_cmd_got \ntests/commands/heap.py::HeapCommand::test_cmd_heap_arenas \n[gw3] [ 36%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_max_size_filter \ntests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_min_size_filter \n[gw2] [ 37%] PASSED tests/commands/hexdump.py::HexdumpCommand::test_cmd_hexdump \ntests/commands/highlight.py::HighlightCommand::test_cmd_highlight \n[gw1] [ 38%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_arenas \ntests/commands/heap.py::HeapCommand::test_cmd_heap_bins_fast \n[gw2] [ 38%] PASSED tests/commands/highlight.py::HighlightCommand::test_cmd_highlight \ntests/commands/hijack_fd.py::HijackFdCommand::test_cmd_hijack_fd \n[gw0] [ 39%] PASSED tests/api/gef_heap.py::GefHeapApi::test_func_gef_heap_tidx2size \ntests/commands/name_break.py::NameBreakCommand::test_cmd_name_break \n[gw2] [ 40%] PASSED tests/commands/hijack_fd.py::HijackFdCommand::test_cmd_hijack_fd \ntests/commands/ksymaddr.py::KsymaddrCommand::test_cmd_ksymaddr \n[gw1] [ 40%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_bins_fast \ntests/commands/heap.py::HeapCommand::test_cmd_heap_bins_large \n[gw3] [ 41%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_min_size_filter \ntests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_mult_heaps \n[gw2] [ 41%] PASSED tests/commands/ksymaddr.py::KsymaddrCommand::test_cmd_ksymaddr \ntests/commands/memory.py::MemoryCommand::test_cmd_memory_list \n[gw1] [ 42%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_bins_large \ntests/commands/heap.py::HeapCommand::test_cmd_heap_bins_non_main \n[gw0] [ 43%] PASSED tests/commands/name_break.py::NameBreakCommand::test_cmd_name_break \ntests/commands/nop.py::NopCommand::test_cmd_nop_as_bytes_invalid_end_address \n[gw3] [ 43%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_mult_heaps \ntests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_summary \n[gw1] [ 44%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_bins_non_main \ntests/commands/heap.py::HeapCommand::test_cmd_heap_bins_small \n[gw2] [ 45%] PASSED tests/commands/memory.py::MemoryCommand::test_cmd_memory_list \ntests/commands/memory.py::MemoryCommand::test_cmd_memory_reset \n[gw1] [ 45%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_bins_small \ntests/commands/heap.py::HeapCommand::test_cmd_heap_bins_tcache \n[gw0] [ 46%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_as_bytes_invalid_end_address \ntests/commands/nop.py::NopCommand::test_cmd_nop_bytes \n[gw3] [ 47%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_summary \ntests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_summary_with_type_resolved \n[gw2] [ 47%] PASSED tests/commands/memory.py::MemoryCommand::test_cmd_memory_reset \ntests/commands/memory.py::MemoryCommand::test_cmd_memory_unwatch \n[gw1] [ 48%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_bins_tcache \ntests/commands/nop.py::NopCommand::test_cmd_nop_check_b_and_n_same_time \n[gw0] [ 49%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_bytes \ntests/commands/nop.py::NopCommand::test_cmd_nop_bytes_arg \n[gw1] [ 49%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_check_b_and_n_same_time \ntests/commands/nop.py::NopCommand::test_cmd_nop_force_arg_break_instruction \n[gw0] [ 50%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_bytes_arg \n[gw2] [ 50%] PASSED tests/commands/memory.py::MemoryCommand::test_cmd_memory_unwatch \ntests/commands/nop.py::NopCommand::test_cmd_nop_bytes_arg_nops_no_fit \ntests/commands/memory.py::MemoryCommand::test_cmd_memory_watch \n[gw3] [ 51%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_summary_with_type_resolved \ntests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_with_count \n[gw1] [ 52%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_force_arg_break_instruction \ntests/commands/nop.py::NopCommand::test_cmd_nop_i_arg \n[gw0] [ 52%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_bytes_arg_nops_no_fit \ntests/commands/nop.py::NopCommand::test_cmd_nop_bytes_arg_nops_no_fit_force \n[gw1] [ 53%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_i_arg \ntests/commands/nop.py::NopCommand::test_cmd_nop_i_arg_reaching_unmapped_area \n[gw0] [ 54%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_bytes_arg_nops_no_fit_force \ntests/commands/nop.py::NopCommand::test_cmd_nop_bytes_break_instruction \n[gw1] [ 54%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_i_arg_reaching_unmapped_area \ntests/commands/nop.py::NopCommand::test_cmd_nop_inactive \n[gw0] [ 55%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_bytes_break_instruction \ntests/commands/nop.py::NopCommand::test_cmd_nop_bytes_break_instruction_force \n[gw3] [ 56%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_with_count \ntests/commands/nop.py::NopCommand::test_cmd_nop_nop_break_instruction_force \n[gw1] [ 56%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_inactive \ntests/commands/nop.py::NopCommand::test_cmd_nop_invalid_end_address \n[gw0] [ 57%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_bytes_break_instruction_force \ntests/commands/patch.py::PatchCommand::test_cmd_patch_qword_symbol \n[gw3] [ 58%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_nop_break_instruction_force \ntests/commands/patch.py::PatchCommand::test_cmd_patch \n[gw1] [ 58%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_invalid_end_address \ntests/commands/nop.py::NopCommand::test_cmd_nop_no_arg \n[gw3] [ 59%] PASSED tests/commands/patch.py::PatchCommand::test_cmd_patch \ntests/commands/patch.py::PatchCommand::test_cmd_patch_byte \n[gw1] [ 60%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_no_arg \ntests/commands/pcustom.py::PcustomCommand::test_cmd_pcustom \n[gw3] [ 60%] PASSED tests/commands/patch.py::PatchCommand::test_cmd_patch_byte \ntests/commands/patch.py::PatchCommand::test_cmd_patch_byte_bytearray \n[gw0] [ 61%] PASSED tests/commands/patch.py::PatchCommand::test_cmd_patch_qword_symbol \ntests/commands/patch.py::PatchCommand::test_cmd_patch_string \n[gw3] [ 61%] PASSED tests/commands/patch.py::PatchCommand::test_cmd_patch_byte_bytearray \ntests/commands/patch.py::PatchCommand::test_cmd_patch_dword \n[gw0] [ 62%] PASSED tests/commands/patch.py::PatchCommand::test_cmd_patch_string \ntests/commands/patch.py::PatchCommand::test_cmd_patch_word \n[gw1] [ 63%] PASSED tests/commands/pcustom.py::PcustomCommand::test_cmd_pcustom \ntests/commands/pcustom.py::PcustomCommand::test_cmd_pcustom_show \n[gw3] [ 63%] PASSED tests/commands/patch.py::PatchCommand::test_cmd_patch_dword \ntests/commands/patch.py::PatchCommand::test_cmd_patch_qword \n[gw0] [ 64%] PASSED tests/commands/patch.py::PatchCommand::test_cmd_patch_word \ntests/commands/pattern.py::PatternCommand::test_cmd_pattern_create \n[gw2] [ 65%] PASSED tests/commands/memory.py::MemoryCommand::test_cmd_memory_watch \ntests/commands/nop.py::NopCommand::test_cmd_nop_no_arg_break_instruction \n[gw3] [ 65%] PASSED tests/commands/patch.py::PatchCommand::test_cmd_patch_qword \ntests/commands/pie.py::PieCommand::test_cmd_pie_breakpoint_delete \n[gw0] [ 66%] PASSED tests/commands/pattern.py::PatternCommand::test_cmd_pattern_create \ntests/commands/pattern.py::PatternCommand::test_cmd_pattern_search \n[gw2] [ 67%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_no_arg_break_instruction \ntests/commands/nop.py::NopCommand::test_cmd_nop_nop \n[gw3] [ 67%] PASSED tests/commands/pie.py::PieCommand::test_cmd_pie_breakpoint_delete \ntests/commands/pie.py::PieCommand::test_cmd_pie_breakpoint_run \n[gw1] [ 68%] PASSED tests/commands/pcustom.py::PcustomCommand::test_cmd_pcustom_show \ntests/commands/pie.py::PieCommand::test_cmd_pie \n[gw2] [ 69%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_nop \ntests/commands/nop.py::NopCommand::test_cmd_nop_nop_arg \n[gw3] [ 69%] PASSED tests/commands/pie.py::PieCommand::test_cmd_pie_breakpoint_run \ntests/commands/print_format.py::PrintFormatCommand::test_cmd_print_format \n[gw2] [ 70%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_nop_arg \ntests/commands/nop.py::NopCommand::test_cmd_nop_nop_arg_multibnop_breaks \n[gw1] [ 70%] PASSED tests/commands/pie.py::PieCommand::test_cmd_pie \ntests/commands/pie.py::PieCommand::test_cmd_pie_breakpoint_check \n[gw1] [ 71%] PASSED tests/commands/pie.py::PieCommand::test_cmd_pie_breakpoint_check \ntests/commands/reset_cache.py::ResetCacheCommand::test_cmd_reset_cache \n[gw2] [ 72%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_nop_arg_multibnop_breaks \ntests/commands/nop.py::NopCommand::test_cmd_nop_nop_arg_multibnop_breaks_force \n[gw1] [ 72%] PASSED tests/commands/reset_cache.py::ResetCacheCommand::test_cmd_reset_cache \ntests/commands/scan.py::ScanCommand::test_cmd_scan \n[gw2] [ 73%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_nop_arg_multibnop_breaks_force \ntests/commands/nop.py::NopCommand::test_cmd_nop_nop_break_instruction \n[gw0] [ 74%] PASSED tests/commands/pattern.py::PatternCommand::test_cmd_pattern_search \ntests/commands/process_search.py::ProcessSearchCommand::test_cmd_process_search \n[gw2] [ 74%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_nop_break_instruction \ntests/commands/search_pattern.py::SearchPatternCommand::test_cmd_search_pattern_regex \n[gw3] [ 75%] PASSED tests/commands/print_format.py::PrintFormatCommand::test_cmd_print_format \ntests/commands/print_format.py::PrintFormatCommand::test_cmd_print_format_bytearray \n[gw2] [ 76%] PASSED tests/commands/search_pattern.py::SearchPatternCommand::test_cmd_search_pattern_regex \ntests/commands/shellcode.py::ShellcodeCommand::test_cmd_shellcode \n[gw1] [ 76%] PASSED tests/commands/scan.py::ScanCommand::test_cmd_scan \ntests/commands/search_pattern.py::SearchPatternCommand::test_cmd_search_pattern \n[gw0] [ 77%] PASSED tests/commands/process_search.py::ProcessSearchCommand::test_cmd_process_search \ntests/commands/process_status.py::ProcessStatusCommand::test_cmd_process_status \n[gw3] [ 78%] PASSED tests/commands/print_format.py::PrintFormatCommand::test_cmd_print_format_bytearray \ntests/commands/shellcode.py::ShellcodeCommand::test_cmd_shellcode_get_ok \n[gw2] [ 78%] PASSED tests/commands/shellcode.py::ShellcodeCommand::test_cmd_shellcode \ntests/commands/shellcode.py::ShellcodeCommand::test_cmd_shellcode_get_nok \n[gw1] [ 79%] PASSED tests/commands/search_pattern.py::SearchPatternCommand::test_cmd_search_pattern \ntests/commands/skipi.py::SkipiCommand::test_cmd_nop_inactive \n[gw0] [ 80%] PASSED tests/commands/process_status.py::ProcessStatusCommand::test_cmd_process_status \ntests/commands/registers.py::RegistersCommand::test_cmd_registers \n[gw1] [ 80%] PASSED tests/commands/skipi.py::SkipiCommand::test_cmd_nop_inactive \ntests/commands/skipi.py::SkipiCommand::test_cmd_skipi_no_arg \n[gw3] [ 81%] PASSED tests/commands/shellcode.py::ShellcodeCommand::test_cmd_shellcode_get_ok \n[gw2] [ 81%] PASSED tests/commands/shellcode.py::ShellcodeCommand::test_cmd_shellcode_get_nok \ntests/commands/skipi.py::SkipiCommand::test_cmd_skipi_skip_two_instructions \ntests/commands/shellcode.py::ShellcodeCommand::test_cmd_shellcode_search \n[gw2] [ 82%] PASSED tests/commands/skipi.py::SkipiCommand::test_cmd_skipi_skip_two_instructions \ntests/commands/skipi.py::SkipiCommand::test_cmd_skipi_two_instructions_from_location \n[gw1] [ 83%] PASSED tests/commands/skipi.py::SkipiCommand::test_cmd_skipi_no_arg \ntests/commands/stub.py::StubCommand::test_cmd_stub \n[gw0] [ 83%] PASSED tests/commands/registers.py::RegistersCommand::test_cmd_registers \ntests/commands/smart_eval.py::SmartEvalCommand::test_cmd_smart_eval \n[gw3] [ 84%] PASSED tests/commands/shellcode.py::ShellcodeCommand::test_cmd_shellcode_search \ntests/commands/theme.py::ThemeCommand::test_cmd_theme \n[gw2] [ 85%] PASSED tests/commands/skipi.py::SkipiCommand::test_cmd_skipi_two_instructions_from_location \ntests/commands/trace_run.py::TraceRunCommand::test_cmd_trace_run \n[gw1] [ 85%] PASSED tests/commands/stub.py::StubCommand::test_cmd_stub \ntests/commands/version.py::VersionCommand::test_cmd_version \n[gw2] [ 86%] PASSED tests/commands/trace_run.py::TraceRunCommand::test_cmd_trace_run \ntests/commands/xinfo.py::XinfoCommand::test_cmd_xinfo \n[gw1] [ 87%] PASSED tests/commands/version.py::VersionCommand::test_cmd_version \ntests/commands/xinfo.py::XinfoCommand::test_cmd_xinfo_on_class \n[gw0] [ 87%] PASSED tests/commands/smart_eval.py::SmartEvalCommand::test_cmd_smart_eval \ntests/commands/vmmap.py::VmmapCommand::test_cmd_vmmap \n[gw1] [ 88%] FAILED tests/commands/xinfo.py::XinfoCommand::test_cmd_xinfo_on_class \ntests/commands/xor_memory.py::XorMemoryCommand::test_cmd_xor_memory_patch \n[gw2] [ 89%] PASSED tests/commands/xinfo.py::XinfoCommand::test_cmd_xinfo \ntests/commands/xor_memory.py::XorMemoryCommand::test_cmd_xor_memory_display \n[gw1] [ 89%] PASSED tests/commands/xor_memory.py::XorMemoryCommand::test_cmd_xor_memory_patch \ntests/config/__init__.py::TestGefConfigUnit::test_config_libc_version \n[gw0] [ 90%] PASSED tests/commands/vmmap.py::VmmapCommand::test_cmd_vmmap \ntests/config/__init__.py::TestGefConfigUnit::test_config_hook_validator \n[gw2] [ 90%] PASSED tests/commands/xor_memory.py::XorMemoryCommand::test_cmd_xor_memory_display \ntests/config/__init__.py::TestGefConfigUnit::test_config_show_opcodes_size \n[gw0] [ 91%] PASSED tests/config/__init__.py::TestGefConfigUnit::test_config_hook_validator \ntests/functions/elf_sections.py::ElfSectionGdbFunction::test_func_base \n[gw2] [ 92%] PASSED tests/config/__init__.py::TestGefConfigUnit::test_config_show_opcodes_size \ntests/functions/elf_sections.py::ElfSectionGdbFunction::test_func_bss \n[gw1] [ 92%] PASSED tests/config/__init__.py::TestGefConfigUnit::test_config_libc_version \ntests/config/__init__.py::TestGefConfigUnit::test_config_type_validator \n[gw2] [ 93%] PASSED tests/functions/elf_sections.py::ElfSectionGdbFunction::test_func_bss \ntests/functions/elf_sections.py::ElfSectionGdbFunction::test_func_heap \n[gw0] [ 94%] PASSED tests/functions/elf_sections.py::ElfSectionGdbFunction::test_func_base \ntests/functions/elf_sections.py::ElfSectionGdbFunction::test_func_got \n[gw1] [ 94%] PASSED tests/config/__init__.py::TestGefConfigUnit::test_config_type_validator \ntests/functions/elf_sections.py::ElfSectionGdbFunction::test_func_stack \n[gw0] [ 95%] PASSED tests/functions/elf_sections.py::ElfSectionGdbFunction::test_func_got \ntests/regressions/registers_register_order.py::RegressionRegisterOrder::test_context_correct_registers_refresh_with_frames \n[gw2] [ 96%] PASSED tests/functions/elf_sections.py::ElfSectionGdbFunction::test_func_heap \ntests/regressions/gdbserver_connection.py::RegressionGdbserverConnection::test_can_establish_connection_to_gdbserver_again_after_disconnect \n[gw1] [ 96%] PASSED tests/functions/elf_sections.py::ElfSectionGdbFunction::test_func_stack \ntests/regressions/registers_register_order.py::RegressionRegisterOrder::test_registers_show_registers_in_correct_order \n[gw0] [ 97%] PASSED tests/regressions/registers_register_order.py::RegressionRegisterOrder::test_context_correct_registers_refresh_with_frames \n[gw1] [ 98%] PASSED tests/regressions/registers_register_order.py::RegressionRegisterOrder::test_registers_show_registers_in_correct_order \n[gw2] [ 98%] PASSED tests/regressions/gdbserver_connection.py::RegressionGdbserverConnection::test_can_establish_connection_to_gdbserver_again_after_disconnect \n[gw3] [ 99%] PASSED tests/commands/theme.py::ThemeCommand::test_cmd_theme \ntests/commands/xfiles.py::XfilesCommand::test_cmd_xfiles \n[gw3] [100%] PASSED tests/commands/xfiles.py::XfilesCommand::test_cmd_xfiles \n\n=================================== FAILURES ===================================\n_____________________ XinfoCommand.test_cmd_xinfo_on_class _____________________\n[gw1] linux -- Python 3.10.12 /usr/bin/python3.10\nself = <tests.commands.xinfo.XinfoCommand testMethod=test_cmd_xinfo_on_class>\n\n def test_cmd_xinfo_on_class(self):\n cmd = \"xinfo $pc+4\"\n target = debug_target(\"class\")\n res = gdb_run_silent_cmd(cmd, target=target, before=[\"b B<TraitA, TraitB>::Run()\"])\n self.assertNoException(res)\n> self.assertIn(\"Symbol: B<TraitA, TraitB>::Run()+4\", res)\nE AssertionError: 'Symbol: B<TraitA, TraitB>::Run()+4' not found in 'Reading symbols from /tmp/class.out...\\nError while writing index for `/tmp/class.out\\': mkstemp: No such file or directory.\\nGEF for linux ready, type `gef\\' to start, `gef config\\' to configure\\n89 commands loaded and 5 functions added for GDB 12.1 in 0.00ms using Python engine 3.10\\nBreakpoint 1 at 0x1328: file class.cpp, line 21.\\nStarting program: /tmp/class.out \\n[Thread debugging using libthread_db enabled]\\nUsing host libthread_db library \"/lib/x86_64-linux-gnu/libthread_db.so.1\".\\n\\nBreakpoint 1, B<TraitA, TraitB>::Run (this=0x55555556b2b0) at class.cpp:21\\n21\\t virtual void Run() { printf(\"I am B\\\\n\"); }\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 xinfo: 0x55555555532c \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\nPage: 0x0000555555555000 \u2192 0x0000555555556000 (size=0x1000)\\nPermissions: r-x\\nPathname: /tmp/class.out\\nOffset (from page): 0x32c\\nInode: 37098\\nSegment: .text (0x00005555555550a0-0x000055555555533a)\\nOffset (from segment): 0x28c\\nSymbol: B<TraitA, TraitB>::Run()+20'\n\ntests/commands/xinfo.py:27: AssertionError\n=========================== short test summary info ============================\nFAILED tests/commands/xinfo.py::XinfoCommand::test_cmd_xinfo_on_class\n================== 1 failed, 153 passed, 1 skipped in 52.95s ===================\n##[error]Process completed with exit code 1.\n"}, {"step_name": "Run Unit tests on ubuntu-20.04/8_Run Tests.txt", "log": "##[group]Run make -C tests/binaries -j 4\n\u001b[36;1mmake -C tests/binaries -j 4\u001b[0m\n\u001b[36;1mpython3.8 -m pytest --forked -n 4 -v -k \"not benchmark\" tests/\u001b[0m\nshell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}\nenv:\n PY_VER: 3.8\n GEF_CI_NB_CPU: 4\n GEF_CI_ARCH: x86_64\n GEF_CI_CACHE_DIR: /home/runner/.cache/pip\n##[endgroup]\nmake: Entering directory '/home/runner/work/gef/gef/tests/binaries'\n[+] Building '/tmp/heap.out'\n[+] Building '/tmp/bss.out'\n[+] Building '/tmp/canary.out'\n[+] Building '/tmp/heap-multiple-heaps.out'\n[+] Building '/tmp/checksec-no-canary.out'\n[+] Building '/tmp/format-string-helper.out'\n[+] Building '/tmp/checksec-no-nx.out'\n[+] Building '/tmp/heap-non-main.out'\n[+] Building '/tmp/nested2.out'\n[+] Building '/tmp/mmap-known-address.out'\n[+] Building '/tmp/heap-analysis.out'\n[+] Building '/tmp/default.out'\n[+] Building '/tmp/heap-tcache.out'\n[+] Building '/tmp/nested.out'\n[+] Building '/tmp/checksec-no-pie.out'\n[+] Building '/tmp/heap-bins.out'\n[+] Building '/tmp/pattern.out'\n[+] Building '/tmp/memwatch.out'\n[+] Building '/tmp/pcustom.out'\n[+] Building '/tmp/heap-fastbins.out'\n[+] Building '/tmp/class.out'\nmake: Leaving directory '/home/runner/work/gef/gef/tests/binaries'\n============================= test session starts ==============================\nplatform linux -- Python 3.8.10, pytest-7.4.4, pluggy-1.3.0 -- /usr/bin/python3.8\ncachedir: .pytest_cache\nbenchmark: 4.0.0 (defaults: timer=time.perf_counter disable_gc=False min_rounds=5 min_time=0.000005 max_time=1.0 calibration_precision=10 warmup=False warmup_iterations=100000)\nrootdir: /home/runner/work/gef/gef/tests\nconfigfile: pytest.ini\nplugins: forked-1.6.0, xdist-3.5.0, benchmark-4.0.0, cov-4.1.0\ncreated: 4/4 workers\n4 workers [155 items]\n\nscheduling tests via LoadScheduling\n\ntests/commands/checksec.py::ChecksecCommand::test_cmd_checksec \ntests/api/deprecated.py::GefFuncDeprecatedApi::test_deprecated_elf_values \ntests/api/gef_session.py::GefSessionApi::test_func_auxiliary_vector \ntests/api/misc.py::MiscFunctionTest::test_func_parse_permissions \n[gw1] [ 0%] PASSED tests/api/gef_session.py::GefSessionApi::test_func_auxiliary_vector \ntests/api/gef_session.py::GefSessionApi::test_func_get_filepath \n[gw3] [ 1%] PASSED tests/commands/checksec.py::ChecksecCommand::test_cmd_checksec \ntests/commands/dereference.py::DereferenceCommand::test_cmd_dereference \n[gw1] [ 1%] PASSED tests/api/gef_session.py::GefSessionApi::test_func_get_filepath \ntests/api/gef_session.py::GefSessionApi::test_func_get_pid \n[gw2] [ 2%] PASSED tests/api/misc.py::MiscFunctionTest::test_func_parse_permissions \ntests/api/misc.py::MiscFunctionTest::test_func_show_last_exception \n[gw1] [ 3%] PASSED tests/api/gef_session.py::GefSessionApi::test_func_get_pid \ntests/api/gef_session.py::GefSessionApi::test_root_dir_local \n[gw3] [ 3%] PASSED tests/commands/dereference.py::DereferenceCommand::test_cmd_dereference \ntests/commands/dereference.py::DereferenceCommand::test_cmd_dereference_backwards \n[gw1] [ 4%] PASSED tests/api/gef_session.py::GefSessionApi::test_root_dir_local \ntests/api/gef_session.py::GefSessionApi::test_root_dir_qemu \n[gw2] [ 5%] PASSED tests/api/misc.py::MiscFunctionTest::test_func_show_last_exception \ntests/api/misc.py::MiscFunctionTest::test_func_update_gef \n[gw2] [ 5%] SKIPPED tests/api/misc.py::MiscFunctionTest::test_func_update_gef \ntests/api/misc.py::MiscFunctionTest::test_func_which \n[gw1] [ 6%] PASSED tests/api/gef_session.py::GefSessionApi::test_root_dir_qemu \ntests/api/gef_session.py::GefSessionApi::test_root_dir_remote \n[gw3] [ 7%] PASSED tests/commands/dereference.py::DereferenceCommand::test_cmd_dereference_backwards \ntests/commands/dereference.py::DereferenceCommand::test_cmd_dereference_forwards \n[gw2] [ 7%] PASSED tests/api/misc.py::MiscFunctionTest::test_func_which \ntests/commands/aliases.py::AliasesCommand::test_cmd_aliases \n[gw3] [ 8%] PASSED tests/commands/dereference.py::DereferenceCommand::test_cmd_dereference_forwards \ntests/commands/edit_flags.py::EditFlagsCommand::test_cmd_edit_flags_disable \n[gw1] [ 9%] PASSED tests/api/gef_session.py::GefSessionApi::test_root_dir_remote \ntests/api/misc.py::MiscFunctionTest::test_func_gef_convenience \n[gw1] [ 9%] PASSED tests/api/misc.py::MiscFunctionTest::test_func_gef_convenience \ntests/api/misc.py::MiscFunctionTest::test_func_parse_address \n[gw3] [ 10%] PASSED tests/commands/edit_flags.py::EditFlagsCommand::test_cmd_edit_flags_disable \ntests/commands/edit_flags.py::EditFlagsCommand::test_cmd_edit_flags_enable \n[gw0] [ 10%] PASSED tests/api/deprecated.py::GefFuncDeprecatedApi::test_deprecated_elf_values \ntests/api/gef_arch.py::GefArchApi::test_func_gef_arch_ptrsize \n[gw2] [ 11%] PASSED tests/commands/aliases.py::AliasesCommand::test_cmd_aliases \ntests/commands/aslr.py::AslrCommand::test_cmd_aslr_show \n[gw0] [ 12%] PASSED tests/api/gef_arch.py::GefArchApi::test_func_gef_arch_ptrsize \ntests/api/gef_arch.py::GefArchApi::test_func_reset_architecture \n[gw1] [ 12%] PASSED tests/api/misc.py::MiscFunctionTest::test_func_parse_address \ntests/api/misc.py::MiscFunctionTest::test_func_parse_maps \n[gw2] [ 13%] PASSED tests/commands/aslr.py::AslrCommand::test_cmd_aslr_show \ntests/commands/aslr.py::AslrCommand::test_cmd_aslr_toggle \n[gw3] [ 14%] PASSED tests/commands/edit_flags.py::EditFlagsCommand::test_cmd_edit_flags_enable \ntests/commands/edit_flags.py::EditFlagsCommand::test_cmd_edit_flags_toggle \n[gw0] [ 14%] PASSED tests/api/gef_arch.py::GefArchApi::test_func_reset_architecture \ntests/api/gef_disasemble.py::GefDisassembleApiFunction::test_func_gef_disassemble \n[gw0] [ 15%] PASSED tests/api/gef_disasemble.py::GefDisassembleApiFunction::test_func_gef_disassemble \ntests/api/gef_disasemble.py::GefDisassembleApiFunction::test_func_gef_disassemble_page_border \n[gw2] [ 16%] PASSED tests/commands/aslr.py::AslrCommand::test_cmd_aslr_toggle \ntests/commands/canary.py::CanaryCommand::test_cmd_canary \n[gw3] [ 16%] PASSED tests/commands/edit_flags.py::EditFlagsCommand::test_cmd_edit_flags_toggle \ntests/commands/elf_info.py::ElfInfoCommand::test_cmd_elf_info \n[gw0] [ 17%] PASSED tests/api/gef_disasemble.py::GefDisassembleApiFunction::test_func_gef_disassemble_page_border \ntests/api/gef_heap.py::GefHeapApi::test_class_glibcarena_main_arena \n[gw3] [ 18%] PASSED tests/commands/elf_info.py::ElfInfoCommand::test_cmd_elf_info \ntests/commands/entry_break.py::EntryBreakCommand::test_cmd_entry_break \n[gw2] [ 18%] PASSED tests/commands/canary.py::CanaryCommand::test_cmd_canary \ntests/commands/canary.py::CanaryCommand::test_overwrite_canary \n[gw3] [ 19%] PASSED tests/commands/entry_break.py::EntryBreakCommand::test_cmd_entry_break \ntests/commands/heap.py::HeapCommand::test_cmd_heap_bins_tcache_all \n[gw0] [ 20%] PASSED tests/api/gef_heap.py::GefHeapApi::test_class_glibcarena_main_arena \ntests/api/gef_heap.py::GefHeapApi::test_func_gef_heap_csize2tidx \n[gw2] [ 20%] PASSED tests/commands/canary.py::CanaryCommand::test_overwrite_canary \ntests/commands/format_string_helper.py::FormatStringHelperCommand::test_cmd_format_string_helper \n[gw2] [ 21%] PASSED tests/commands/format_string_helper.py::FormatStringHelperCommand::test_cmd_format_string_helper \ntests/commands/functions.py::FunctionsCommand::test_cmd_functions \n[gw2] [ 21%] PASSED tests/commands/functions.py::FunctionsCommand::test_cmd_functions \ntests/commands/gef.py::GefCommand::test_cmd_gef \n[gw1] [ 22%] PASSED tests/api/misc.py::MiscFunctionTest::test_func_parse_maps \ntests/commands/gef.py::GefCommand::test_cmd_gef_run_and_run \n[gw2] [ 23%] PASSED tests/commands/gef.py::GefCommand::test_cmd_gef \ntests/commands/gef.py::GefCommand::test_cmd_gef_config \n[gw3] [ 23%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_bins_tcache_all \ntests/commands/heap.py::HeapCommand::test_cmd_heap_bins_unsorted \n[gw2] [ 24%] PASSED tests/commands/gef.py::GefCommand::test_cmd_gef_config \ntests/commands/gef.py::GefCommand::test_cmd_gef_config_get \n[gw1] [ 25%] PASSED tests/commands/gef.py::GefCommand::test_cmd_gef_run_and_run \ntests/commands/gef.py::GefCommand::test_cmd_gef_save \n[gw2] [ 25%] PASSED tests/commands/gef.py::GefCommand::test_cmd_gef_config_get \ntests/commands/gef.py::GefCommand::test_cmd_gef_config_set \n[gw3] [ 26%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_bins_unsorted \ntests/commands/heap.py::HeapCommand::test_cmd_heap_chunk_no_arg \n[gw2] [ 27%] PASSED tests/commands/gef.py::GefCommand::test_cmd_gef_config_set \ntests/commands/gef.py::GefCommand::test_cmd_gef_help \n[gw2] [ 27%] PASSED tests/commands/gef.py::GefCommand::test_cmd_gef_help \n[gw1] [ 28%] PASSED tests/commands/gef.py::GefCommand::test_cmd_gef_save \ntests/commands/gef_remote.py::GefRemoteCommand::test_cmd_gef_remote \ntests/commands/gef.py::GefCommand::test_cmd_gef_install \n[gw3] [ 29%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_chunk_no_arg \ntests/commands/heap.py::HeapCommand::test_cmd_heap_chunk_with_number \n[gw0] [ 29%] PASSED tests/api/gef_heap.py::GefHeapApi::test_func_gef_heap_csize2tidx \ntests/api/gef_heap.py::GefHeapApi::test_func_gef_heap_malloc_align_address \n[gw3] [ 30%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_chunk_with_number \ntests/commands/heap.py::HeapCommand::test_cmd_heap_chunks \n[gw2] [ 30%] PASSED tests/commands/gef.py::GefCommand::test_cmd_gef_install \ntests/commands/heap.py::HeapCommand::test_cmd_heap_set_arena \n[gw1] [ 31%] PASSED tests/commands/gef_remote.py::GefRemoteCommand::test_cmd_gef_remote \ntests/commands/gef_remote.py::GefRemoteCommand::test_cmd_gef_remote_qemu_user \n[gw2] [ 32%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_set_arena \ntests/commands/heap_analysis.py::HeapAnalysisCommand::test_cmd_heap_analysis \n[gw1] [ 32%] PASSED tests/commands/gef_remote.py::GefRemoteCommand::test_cmd_gef_remote_qemu_user \ntests/commands/gef_remote.py::GefRemoteCommand::test_cmd_target_remote \n[gw0] [ 33%] PASSED tests/api/gef_heap.py::GefHeapApi::test_func_gef_heap_malloc_align_address \ntests/api/gef_heap.py::GefHeapApi::test_func_gef_heap_tidx2size \n[gw2] [ 34%] PASSED tests/commands/heap_analysis.py::HeapAnalysisCommand::test_cmd_heap_analysis \ntests/commands/hexdump.py::HexdumpCommand::test_cmd_hexdump \n[gw3] [ 34%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_chunks \ntests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_max_size_filter \n[gw1] [ 35%] PASSED tests/commands/gef_remote.py::GefRemoteCommand::test_cmd_target_remote \ntests/commands/got.py::GotCommand::test_cmd_got \n[gw3] [ 36%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_max_size_filter \ntests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_min_size_filter \n[gw1] [ 36%] PASSED tests/commands/got.py::GotCommand::test_cmd_got \ntests/commands/heap.py::HeapCommand::test_cmd_heap_arenas \n[gw0] [ 37%] PASSED tests/api/gef_heap.py::GefHeapApi::test_func_gef_heap_tidx2size \ntests/commands/name_break.py::NameBreakCommand::test_cmd_name_break \n[gw2] [ 38%] PASSED tests/commands/hexdump.py::HexdumpCommand::test_cmd_hexdump \ntests/commands/highlight.py::HighlightCommand::test_cmd_highlight \n[gw1] [ 38%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_arenas \ntests/commands/heap.py::HeapCommand::test_cmd_heap_bins_fast \n[gw2] [ 39%] PASSED tests/commands/highlight.py::HighlightCommand::test_cmd_highlight \ntests/commands/hijack_fd.py::HijackFdCommand::test_cmd_hijack_fd \n[gw0] [ 40%] PASSED tests/commands/name_break.py::NameBreakCommand::test_cmd_name_break \ntests/commands/nop.py::NopCommand::test_cmd_nop_as_bytes_invalid_end_address \n[gw2] [ 40%] PASSED tests/commands/hijack_fd.py::HijackFdCommand::test_cmd_hijack_fd \ntests/commands/ksymaddr.py::KsymaddrCommand::test_cmd_ksymaddr \n[gw3] [ 41%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_min_size_filter \ntests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_mult_heaps \n[gw1] [ 41%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_bins_fast \ntests/commands/heap.py::HeapCommand::test_cmd_heap_bins_large \n[gw2] [ 42%] PASSED tests/commands/ksymaddr.py::KsymaddrCommand::test_cmd_ksymaddr \ntests/commands/memory.py::MemoryCommand::test_cmd_memory_list \n[gw1] [ 43%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_bins_large \ntests/commands/heap.py::HeapCommand::test_cmd_heap_bins_non_main \n[gw0] [ 43%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_as_bytes_invalid_end_address \ntests/commands/nop.py::NopCommand::test_cmd_nop_bytes \n[gw3] [ 44%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_mult_heaps \ntests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_summary \n[gw2] [ 45%] PASSED tests/commands/memory.py::MemoryCommand::test_cmd_memory_list \ntests/commands/memory.py::MemoryCommand::test_cmd_memory_reset \n[gw1] [ 45%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_bins_non_main \ntests/commands/heap.py::HeapCommand::test_cmd_heap_bins_small \n[gw0] [ 46%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_bytes \ntests/commands/nop.py::NopCommand::test_cmd_nop_bytes_arg \n[gw3] [ 47%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_summary \ntests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_summary_with_type_resolved \n[gw1] [ 47%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_bins_small \ntests/commands/heap.py::HeapCommand::test_cmd_heap_bins_tcache \n[gw0] [ 48%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_bytes_arg \ntests/commands/nop.py::NopCommand::test_cmd_nop_bytes_arg_nops_no_fit \n[gw2] [ 49%] PASSED tests/commands/memory.py::MemoryCommand::test_cmd_memory_reset \ntests/commands/memory.py::MemoryCommand::test_cmd_memory_unwatch \n[gw1] [ 49%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_bins_tcache \ntests/commands/nop.py::NopCommand::test_cmd_nop_check_b_and_n_same_time \n[gw3] [ 50%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_summary_with_type_resolved \ntests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_with_count \n[gw0] [ 50%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_bytes_arg_nops_no_fit \ntests/commands/nop.py::NopCommand::test_cmd_nop_bytes_arg_nops_no_fit_force \n[gw2] [ 51%] PASSED tests/commands/memory.py::MemoryCommand::test_cmd_memory_unwatch \ntests/commands/memory.py::MemoryCommand::test_cmd_memory_watch \n[gw1] [ 52%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_check_b_and_n_same_time \ntests/commands/nop.py::NopCommand::test_cmd_nop_force_arg_break_instruction \n[gw0] [ 52%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_bytes_arg_nops_no_fit_force \ntests/commands/nop.py::NopCommand::test_cmd_nop_bytes_break_instruction \n[gw1] [ 53%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_force_arg_break_instruction \ntests/commands/nop.py::NopCommand::test_cmd_nop_i_arg \n[gw0] [ 54%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_bytes_break_instruction \ntests/commands/nop.py::NopCommand::test_cmd_nop_bytes_break_instruction_force \n[gw1] [ 54%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_i_arg \ntests/commands/nop.py::NopCommand::test_cmd_nop_i_arg_reaching_unmapped_area \n[gw3] [ 55%] PASSED tests/commands/heap.py::HeapCommand::test_cmd_heap_chunks_with_count \ntests/commands/nop.py::NopCommand::test_cmd_nop_no_arg_break_instruction \n[gw0] [ 56%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_bytes_break_instruction_force \ntests/commands/patch.py::PatchCommand::test_cmd_patch_qword_symbol \n[gw1] [ 56%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_i_arg_reaching_unmapped_area \ntests/commands/nop.py::NopCommand::test_cmd_nop_inactive \n[gw3] [ 57%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_no_arg_break_instruction \ntests/commands/nop.py::NopCommand::test_cmd_nop_nop \n[gw1] [ 58%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_inactive \ntests/commands/nop.py::NopCommand::test_cmd_nop_invalid_end_address \n[gw0] [ 58%] PASSED tests/commands/patch.py::PatchCommand::test_cmd_patch_qword_symbol \ntests/commands/patch.py::PatchCommand::test_cmd_patch_string \n[gw3] [ 59%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_nop \ntests/commands/nop.py::NopCommand::test_cmd_nop_nop_arg \n[gw1] [ 60%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_invalid_end_address \ntests/commands/nop.py::NopCommand::test_cmd_nop_no_arg \n[gw0] [ 60%] PASSED tests/commands/patch.py::PatchCommand::test_cmd_patch_string \ntests/commands/patch.py::PatchCommand::test_cmd_patch_word \n[gw3] [ 61%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_nop_arg \ntests/commands/nop.py::NopCommand::test_cmd_nop_nop_arg_multibnop_breaks \n[gw1] [ 61%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_no_arg \ntests/commands/pcustom.py::PcustomCommand::test_cmd_pcustom \n[gw0] [ 62%] PASSED tests/commands/patch.py::PatchCommand::test_cmd_patch_word \n[gw3] [ 63%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_nop_arg_multibnop_breaks \ntests/commands/nop.py::NopCommand::test_cmd_nop_nop_arg_multibnop_breaks_force \ntests/commands/pattern.py::PatternCommand::test_cmd_pattern_create \n[gw1] [ 63%] PASSED tests/commands/pcustom.py::PcustomCommand::test_cmd_pcustom \ntests/commands/pcustom.py::PcustomCommand::test_cmd_pcustom_show \n[gw3] [ 64%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_nop_arg_multibnop_breaks_force \ntests/commands/nop.py::NopCommand::test_cmd_nop_nop_break_instruction \n[gw0] [ 65%] PASSED tests/commands/pattern.py::PatternCommand::test_cmd_pattern_create \ntests/commands/pattern.py::PatternCommand::test_cmd_pattern_search \n[gw3] [ 65%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_nop_break_instruction \ntests/commands/pie.py::PieCommand::test_cmd_pie_breakpoint_delete \n[gw2] [ 66%] PASSED tests/commands/memory.py::MemoryCommand::test_cmd_memory_watch \ntests/commands/nop.py::NopCommand::test_cmd_nop_nop_break_instruction_force \n[gw3] [ 67%] PASSED tests/commands/pie.py::PieCommand::test_cmd_pie_breakpoint_delete \ntests/commands/pie.py::PieCommand::test_cmd_pie_breakpoint_run \n[gw2] [ 67%] PASSED tests/commands/nop.py::NopCommand::test_cmd_nop_nop_break_instruction_force \ntests/commands/patch.py::PatchCommand::test_cmd_patch \n[gw3] [ 68%] PASSED tests/commands/pie.py::PieCommand::test_cmd_pie_breakpoint_run \ntests/commands/print_format.py::PrintFormatCommand::test_cmd_print_format \n[gw2] [ 69%] PASSED tests/commands/patch.py::PatchCommand::test_cmd_patch \ntests/commands/patch.py::PatchCommand::test_cmd_patch_byte \n[gw1] [ 69%] PASSED tests/commands/pcustom.py::PcustomCommand::test_cmd_pcustom_show \ntests/commands/pie.py::PieCommand::test_cmd_pie \n[gw2] [ 70%] PASSED tests/commands/patch.py::PatchCommand::test_cmd_patch_byte \ntests/commands/patch.py::PatchCommand::test_cmd_patch_byte_bytearray \n[gw1] [ 70%] PASSED tests/commands/pie.py::PieCommand::test_cmd_pie \ntests/commands/pie.py::PieCommand::test_cmd_pie_breakpoint_check \n[gw2] [ 71%] PASSED tests/commands/patch.py::PatchCommand::test_cmd_patch_byte_bytearray \ntests/commands/patch.py::PatchCommand::test_cmd_patch_dword \n[gw0] [ 72%] PASSED tests/commands/pattern.py::PatternCommand::test_cmd_pattern_search \ntests/commands/process_search.py::ProcessSearchCommand::test_cmd_process_search \n[gw1] [ 72%] PASSED tests/commands/pie.py::PieCommand::test_cmd_pie_breakpoint_check \ntests/commands/reset_cache.py::ResetCacheCommand::test_cmd_reset_cache \n[gw2] [ 73%] PASSED tests/commands/patch.py::PatchCommand::test_cmd_patch_dword \ntests/commands/patch.py::PatchCommand::test_cmd_patch_qword \n[gw1] [ 74%] PASSED tests/commands/reset_cache.py::ResetCacheCommand::test_cmd_reset_cache \ntests/commands/scan.py::ScanCommand::test_cmd_scan \n[gw2] [ 74%] PASSED tests/commands/patch.py::PatchCommand::test_cmd_patch_qword \ntests/commands/search_pattern.py::SearchPatternCommand::test_cmd_search_pattern_regex \n[gw3] [ 75%] PASSED tests/commands/print_format.py::PrintFormatCommand::test_cmd_print_format \ntests/commands/print_format.py::PrintFormatCommand::test_cmd_print_format_bytearray \n[gw0] [ 76%] PASSED tests/commands/process_search.py::ProcessSearchCommand::test_cmd_process_search \ntests/commands/process_status.py::ProcessStatusCommand::test_cmd_process_status \n[gw2] [ 76%] PASSED tests/commands/search_pattern.py::SearchPatternCommand::test_cmd_search_pattern_regex \ntests/commands/shellcode.py::ShellcodeCommand::test_cmd_shellcode \n[gw3] [ 77%] PASSED tests/commands/print_format.py::PrintFormatCommand::test_cmd_print_format_bytearray \ntests/commands/shellcode.py::ShellcodeCommand::test_cmd_shellcode_get_ok \n[gw0] [ 78%] PASSED tests/commands/process_status.py::ProcessStatusCommand::test_cmd_process_status \ntests/commands/registers.py::RegistersCommand::test_cmd_registers \n[gw2] [ 78%] PASSED tests/commands/shellcode.py::ShellcodeCommand::test_cmd_shellcode \ntests/commands/shellcode.py::ShellcodeCommand::test_cmd_shellcode_get_nok \n[gw1] [ 79%] PASSED tests/commands/scan.py::ScanCommand::test_cmd_scan \ntests/commands/search_pattern.py::SearchPatternCommand::test_cmd_search_pattern \n[gw0] [ 80%] PASSED tests/commands/registers.py::RegistersCommand::test_cmd_registers \ntests/commands/skipi.py::SkipiCommand::test_cmd_nop_inactive \n[gw3] [ 80%] PASSED tests/commands/shellcode.py::ShellcodeCommand::test_cmd_shellcode_get_ok \n[gw2] [ 81%] PASSED tests/commands/shellcode.py::ShellcodeCommand::test_cmd_shellcode_get_nok \ntests/commands/skipi.py::SkipiCommand::test_cmd_skipi_skip_two_instructions \ntests/commands/shellcode.py::ShellcodeCommand::test_cmd_shellcode_search \n[gw1] [ 81%] PASSED tests/commands/search_pattern.py::SearchPatternCommand::test_cmd_search_pattern \ntests/commands/smart_eval.py::SmartEvalCommand::test_cmd_smart_eval \n[gw0] [ 82%] PASSED tests/commands/skipi.py::SkipiCommand::test_cmd_nop_inactive \ntests/commands/skipi.py::SkipiCommand::test_cmd_skipi_no_arg \n[gw2] [ 83%] PASSED tests/commands/skipi.py::SkipiCommand::test_cmd_skipi_skip_two_instructions \ntests/commands/skipi.py::SkipiCommand::test_cmd_skipi_two_instructions_from_location \n[gw0] [ 83%] PASSED tests/commands/skipi.py::SkipiCommand::test_cmd_skipi_no_arg \ntests/commands/trace_run.py::TraceRunCommand::test_cmd_trace_run \n[gw3] [ 84%] PASSED tests/commands/shellcode.py::ShellcodeCommand::test_cmd_shellcode_search \ntests/commands/stub.py::StubCommand::test_cmd_stub \n[gw2] [ 85%] PASSED tests/commands/skipi.py::SkipiCommand::test_cmd_skipi_two_instructions_from_location \ntests/commands/version.py::VersionCommand::test_cmd_version \n[gw2] [ 85%] PASSED tests/commands/version.py::VersionCommand::test_cmd_version \ntests/commands/xinfo.py::XinfoCommand::test_cmd_xinfo \n[gw0] [ 86%] PASSED tests/commands/trace_run.py::TraceRunCommand::test_cmd_trace_run \ntests/commands/vmmap.py::VmmapCommand::test_cmd_vmmap \n[gw1] [ 87%] PASSED tests/commands/smart_eval.py::SmartEvalCommand::test_cmd_smart_eval \ntests/commands/theme.py::ThemeCommand::test_cmd_theme \n[gw3] [ 87%] PASSED tests/commands/stub.py::StubCommand::test_cmd_stub \ntests/commands/xfiles.py::XfilesCommand::test_cmd_xfiles \n[gw2] [ 88%] PASSED tests/commands/xinfo.py::XinfoCommand::test_cmd_xinfo \ntests/commands/xinfo.py::XinfoCommand::test_cmd_xinfo_on_class \n[gw3] [ 89%] PASSED tests/commands/xfiles.py::XfilesCommand::test_cmd_xfiles \ntests/config/__init__.py::TestGefConfigUnit::test_config_hook_validator \n[gw0] [ 89%] PASSED tests/commands/vmmap.py::VmmapCommand::test_cmd_vmmap \ntests/commands/xor_memory.py::XorMemoryCommand::test_cmd_xor_memory_display \n[gw2] [ 90%] FAILED tests/commands/xinfo.py::XinfoCommand::test_cmd_xinfo_on_class \ntests/config/__init__.py::TestGefConfigUnit::test_config_libc_version \n[gw3] [ 90%] PASSED tests/config/__init__.py::TestGefConfigUnit::test_config_hook_validator \ntests/config/__init__.py::TestGefConfigUnit::test_config_show_opcodes_size \n[gw0] [ 91%] PASSED tests/commands/xor_memory.py::XorMemoryCommand::test_cmd_xor_memory_display \ntests/config/__init__.py::TestGefConfigUnit::test_config_type_validator \n[gw3] [ 92%] PASSED tests/config/__init__.py::TestGefConfigUnit::test_config_show_opcodes_size \ntests/functions/elf_sections.py::ElfSectionGdbFunction::test_func_bss \n[gw2] [ 92%] PASSED tests/config/__init__.py::TestGefConfigUnit::test_config_libc_version \ntests/functions/elf_sections.py::ElfSectionGdbFunction::test_func_base \n[gw3] [ 93%] PASSED tests/functions/elf_sections.py::ElfSectionGdbFunction::test_func_bss \ntests/functions/elf_sections.py::ElfSectionGdbFunction::test_func_heap \n[gw0] [ 94%] PASSED tests/config/__init__.py::TestGefConfigUnit::test_config_type_validator \ntests/functions/elf_sections.py::ElfSectionGdbFunction::test_func_got \n[gw0] [ 94%] PASSED tests/functions/elf_sections.py::ElfSectionGdbFunction::test_func_got \ntests/regressions/registers_register_order.py::RegressionRegisterOrder::test_context_correct_registers_refresh_with_frames \n[gw2] [ 95%] PASSED tests/functions/elf_sections.py::ElfSectionGdbFunction::test_func_base \ntests/functions/elf_sections.py::ElfSectionGdbFunction::test_func_stack \n[gw3] [ 96%] PASSED tests/functions/elf_sections.py::ElfSectionGdbFunction::test_func_heap \ntests/regressions/gdbserver_connection.py::RegressionGdbserverConnection::test_can_establish_connection_to_gdbserver_again_after_disconnect \n[gw0] [ 96%] PASSED tests/regressions/registers_register_order.py::RegressionRegisterOrder::test_context_correct_registers_refresh_with_frames \ntests/regressions/registers_register_order.py::RegressionRegisterOrder::test_registers_show_registers_in_correct_order \n[gw2] [ 97%] PASSED tests/functions/elf_sections.py::ElfSectionGdbFunction::test_func_stack \n[gw0] [ 98%] PASSED tests/regressions/registers_register_order.py::RegressionRegisterOrder::test_registers_show_registers_in_correct_order \n[gw3] [ 98%] PASSED tests/regressions/gdbserver_connection.py::RegressionGdbserverConnection::test_can_establish_connection_to_gdbserver_again_after_disconnect \n[gw1] [ 99%] PASSED tests/commands/theme.py::ThemeCommand::test_cmd_theme \ntests/commands/xor_memory.py::XorMemoryCommand::test_cmd_xor_memory_patch \n[gw1] [100%] PASSED tests/commands/xor_memory.py::XorMemoryCommand::test_cmd_xor_memory_patch \n\n=================================== FAILURES ===================================\n_____________________ XinfoCommand.test_cmd_xinfo_on_class _____________________\n[gw2] linux -- Python 3.8.10 /usr/bin/python3.8\nself = <tests.commands.xinfo.XinfoCommand testMethod=test_cmd_xinfo_on_class>\n\n def test_cmd_xinfo_on_class(self):\n/home/runner/.local/lib/python3.8/site-packages/pytest_benchmark/logger.py:46: PytestBenchmarkWarning: Benchmarks are automatically disabled because xdist plugin is active.Benchmarks cannot be performed reliably in a parallelized environment.\n warner(PytestBenchmarkWarning(text))\n cmd = \"xinfo $pc+4\"\n target = debug_target(\"class\")\n res = gdb_run_silent_cmd(cmd, target=target, before=[\"b B<TraitA, TraitB>::Run()\"])\n self.assertNoException(res)\n> self.assertIn(\"Symbol: B<TraitA, TraitB>::Run()+4\", res)\nE AssertionError: 'Symbol: B<TraitA, TraitB>::Run()+4' not found in 'Reading symbols from /tmp/class.out...\\nError while writing index for `/tmp/class.out\\': mkstemp: No such file or directory.\\nGEF for linux ready, type `gef\\' to start, `gef config\\' to configure\\n89 commands loaded and 5 functions added for GDB 10.2 in 0.00ms using Python engine 3.8\\nBreakpoint 1 at 0x1328: file class.cpp, line 21.\\nStarting program: /tmp/class.out \\n\\nBreakpoint 1, B<TraitA, TraitB>::Run (this=0x55555556aeb0) at class.cpp:21\\n21\\t virtual void Run() { printf(\"I am B\\\\n\"); }\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\n\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 xinfo: 0x55555555532c \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\\nPage: 0x0000555555555000 \u2192 0x0000555555556000 (size=0x1000)\\nPermissions: r-x\\nPathname: /tmp/class.out\\nOffset (from page): 0x32c\\nInode: 36000\\nSegment: .text (0x00005555555550a0-0x00005555555553b5)\\nOffset (from segment): 0x28c\\nSymbol: B<TraitA, TraitB>::Run()+20'\n\ntests/commands/xinfo.py:27: AssertionError\n=========================== short test summary info ============================\nFAILED tests/commands/xinfo.py::XinfoCommand::test_cmd_xinfo_on_class\n================== 1 failed, 153 passed, 1 skipped in 49.25s ===================\n##[error]Process completed with exit code 1.\n"}], "diff": "diff --git a/tests/commands/xinfo.py b/tests/commands/xinfo.py\nindex 625615b..ea50e23 100644\n--- a/tests/commands/xinfo.py\n+++ b/tests/commands/xinfo.py\n@@ -22,6 +22,6 @@ class XinfoCommand(GefUnitTestGeneric):\n def test_cmd_xinfo_on_class(self):\n cmd = \"xinfo $pc+4\"\n target = debug_target(\"class\")\n- res = gdb_run_silent_cmd(cmd, target=target, before=[\"b B<TraitA, TraitB>::Run()\"])\n+ res = gdb_run_silent_cmd(cmd, target=target, before=[\"b *'B<TraitA, TraitB>::Run'\"])\n self.assertNoException(res)\n self.assertIn(\"Symbol: B<TraitA, TraitB>::Run()+4\", res)\n", "difficulty": 2, "changed_files": ["tests/commands/xinfo.py"], "commit_link": "https://github.com/hugsy/gef/tree/1b22eb71da460e7d3a301842f65c256b920f6195"}