Datasets:

Modalities:
Text
Formats:
parquet
Size:
< 1K
ArXiv:
License:
Dataset Viewer
Auto-converted to Parquet Duplicate
repo
stringlengths
7
37
pull_number
stringlengths
3
6
instance_id
stringlengths
13
43
language
stringclasses
9 values
issue_numbers
listlengths
1
3
base_commit
stringlengths
40
40
patch
stringlengths
410
63.3k
test_patch
stringlengths
373
58.6k
problem_statement
stringlengths
224
7.81k
hints_text
stringlengths
2
23k
all_hints_text
stringlengths
2
27.7k
commit_urls
listlengths
1
102
created_at
stringdate
2024-12-27 11:29:35
2026-07-14 18:23:31
commit_url
stringlengths
72
102
rebuild_cmds
listlengths
1
1
test_cmds
listlengths
1
1
print_cmds
listlengths
1
1
log_parser
stringlengths
1.97k
12.1k
FAIL_TO_PASS
listlengths
1
2.76k
PASS_TO_PASS
listlengths
0
36k
docker_image
stringlengths
43
73
libsdl-org/SDL
11761
libsdl-org__SDL-11761
C
[ "8963" ]
028107124358a3d256c8c3acf4e4db6f20e4c348
diff --git a/.github/workflows/generic.yml b/.github/workflows/generic.yml index 1398bca8381d5..84e1d97fe7a2f 100644 --- a/.github/workflows/generic.yml +++ b/.github/workflows/generic.yml @@ -207,7 +207,7 @@ jobs: ctest -VV --test-dir build/ -j2 - name: "Build test apk's (CMake)" id: apks - ...
diff --git a/test/testautomation_stdlib.c b/test/testautomation_stdlib.c index a2ac6719884b7..26317584f19bc 100644 --- a/test/testautomation_stdlib.c +++ b/test/testautomation_stdlib.c @@ -1324,6 +1324,9 @@ static int SDLCALL stdlib_strtox(void *arg) STRTOX_TEST_CASE(SDL_strtoull, unsigned long long, FMT_PRILLu, "...
arm64 asm, __chkstk, and cmake Our current MSVC code is missing `__chkstk` for arm64 and we are blaming cmake for it referencing cmake issue reported at https://gitlab.kitware.com/cmake/cmake/-/issues/18912 Any progress on this? I found armasm support merges among cmake gitlab PRs. along with some open issues ...
Any progress on this? We are scoping work for the SDL 3.2.0 release, so please let us know if this is a showstopper for you. Well, it _can_ be a showstopper. I don't have anything to test with, though. Me either... let's leave this open until someone has a repro environment. #11761 addresses this. I copied `__chkstk` f...
Any progress on this? We are scoping work for the SDL 3.2.0 release, so please let us know if this is a showstopper for you. Well, it _can_ be a showstopper. I don't have anything to test with, though. Me either... let's leave this open until someone has a repro environment. #11761 addresses this. I copied `__chkstk` f...
[ "https://github.com/libsdl-org/SDL/commit/ae6c9370c1fca3db47ed089049c84e9c0c0c7133", "https://github.com/libsdl-org/SDL/commit/4d8946171bf7189afa3317ffdc59a956bdcf1d29", "https://github.com/libsdl-org/SDL/commit/4613773fc1ab19cdf2c8ecfcba6c1557be53e328", "https://github.com/libsdl-org/SDL/commit/ad5b75f503f6b...
2024-12-28T14:28:37Z
https://github.com/libsdl-org/SDL/tree/028107124358a3d256c8c3acf4e4db6f20e4c348
[ "$vs=\"${env:ProgramFiles(x86)}\\Microsoft Visual Studio\\2022\\BuildTools\\Common7\\Tools\\VsDevCmd.bat\"; cmd.exe /c \"call `\"$vs`\" -arch=x64 && cmake --build build --parallel && cmake --install build\"" ]
[ "$env:SDL_AUDIODRIVER=\"\"dummy\"\"; $env:SDL_VIDEODRIVER=\"\"offscreen\"\"; ctest --test-dir build --no-tests=error --output-on-failure -VV -C Release 2>&1 | Tee-Object -FilePath test-output.log" ]
[ "cat test-output.log" ]
def parser(log: str) -> dict[str, str]: # Improved parser for CTest and internal testautomation output with wrapped lines import re results: dict[str, str] = {} def set_status(name: str, status: str): status = (status or "").strip().lower() if st...
[ "video_getClosestDisplayModeRandomResolution" ]
[ "video_getFullscreenDisplayModes", "round_roundNumberCases", "stdlib_strnlen", "testqsort", "hints_getHint", "pixels_saveLoadBMP", "log10_baseCases", "exp_infCases", "pow_baseNZeroExpOddCases", "asin_outOfDomainCases", "audio_buildAudioStream", "pixels_getPixelFormatDetails", "rect_testEnclo...
starryzhang/sweb.eval.win.libsdl-org_1776_sdl-11761
libsdl-org/SDL
12806
libsdl-org__SDL-12806
C
[ "12802" ]
f35a2736b708408bd5e6273255c03513cf60605a
diff --git a/CMakeLists.txt b/CMakeLists.txt index 364cb5c0fd359..0db59b3eec21c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1893,11 +1893,13 @@ elseif(UNIX AND NOT APPLE AND NOT RISCOS AND NOT HAIKU) set (USE_POSIX_SPAWN 1) endif() elseif(WINDOWS) + enable_language(CXX) check_c_source_compiles(" ...
diff --git a/.github/workflows/create-test-plan.py b/.github/workflows/create-test-plan.py index a137889c81a7d..8048e2bc3229f 100755 --- a/.github/workflows/create-test-plan.py +++ b/.github/workflows/create-test-plan.py @@ -381,9 +381,11 @@ def spec_to_job(spec: JobSpec, key: str, trackmem_symbol_names: bool) -> JobDe...
GameInput v1 header changes On Windows, the `gameinput.h` file (taken from [NuGet](https://www.nuget.org/packages/Microsoft.GameInput)) is C++ instead of C. Since the source files that include it are C, the compiler tries to interpret the header file as C and errors. Also, there are other differences that make it incom...
[ "https://github.com/libsdl-org/SDL/commit/53a4365c12dfbc6189e0e684d17f726300ae2621" ]
2025-04-11T19:03:32Z
https://github.com/libsdl-org/SDL/tree/f35a2736b708408bd5e6273255c03513cf60605a
[ "cmd /c '\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\Common7\\Tools\\VsDevCmd.bat\" -arch=x64 && cmake --build build --parallel && cmake --install build --prefix prefix'" ]
[ "$env:SDL_TESTS_QUICK=\"1\"; ctest --test-dir build --output-on-failure -VV 2>&1 | Tee-Object -FilePath build\\test-output.log" ]
[ "type build\\test-output.log" ]
def parser(log: str) -> dict[str, str]: import re # Strip common ANSI escape sequences to avoid breaking regexes def strip_ansi(s: str) -> str: # CSI sequences, OSC sequences, simple ESC codes s = re.sub(r"\x1B\[[0-9;?]*[ -/]*[@-~]", "", s) s = re.sub(r"\x1B\][^\x07]*(\x07|\x1B\\)",...
[ "testplatform-no-simd" ]
[ "video_getFullscreenDisplayModes", "round_roundNumberCases", "audio_enumerateAndNameAudioDevicesNegativeTest ts", "stdlib_strnlen", "testqsort", "hints_getHint", "pixels_saveLoadBMP", "log10_baseCases", "exp_infCases", "pow_baseNZeroExpOddCases", "asin_outOfDomainCases", "audio_buildAudioStrea...
starryzhang/sweb.eval.win.libsdl-org_1776_sdl-12806
microsoft/ebpf-for-windows
4117
microsoft__ebpf-for-windows-4117
C
[ "3602", "4129" ]
30fdb1f81aa7d4eaceb26a72d72920aeac79bebb
"diff --git a/netebpfext/net_ebpf_ext.c b/netebpfext/net_ebpf_ext.c\nindex 451fb361b4..05e70e467e 10(...TRUNCATED)
"diff --git a/scripts/execute_ebpf_cicd_tests.ps1 b/scripts/execute_ebpf_cicd_tests.ps1\nindex 39607(...TRUNCATED)
"Workflow failed - km_mt_stress_tests_restart_extension\n[Failed Run](https://github.com/microsoft/e(...TRUNCATED)
"[Failed Run](https://github.com/microsoft/ebpf-for-windows/actions/runs/9234035167)\n[Codebase](htt(...TRUNCATED)
"[Failed Run](https://github.com/microsoft/ebpf-for-windows/actions/runs/9234035167)\n[Codebase](htt(...TRUNCATED)
["https://github.com/microsoft/ebpf-for-windows/commit/af0d832e4c1f4f98bcd9da90990bfa6dc31a83ae","ht(...TRUNCATED)
2025-01-06T19:12:32Z
https://github.com/microsoft/ebpf-for-windows/tree/30fdb1f81aa7d4eaceb26a72d72920aeac79bebb
["nuget restore ebpf-for-windows.sln ; msbuild /m /p:Configuration=Debug /p:Platform=x64 /p:Solution(...TRUNCATED)
["Set-Location C:\\testbed\\x64\\Debug; .\\unit_tests.exe --reporter tap --durations yes *> C:\\test(...TRUNCATED)
[ "Get-Content C:\\testbed\\test-results\\catch2-tap.log -Raw" ]
"def parser(log: str) -> dict[str, str]:\n import re\n\n results: dict[str, str] = {}\n\n #(...TRUNCATED)
["map_crud_operations:BPF_MAP_TYPE_LRU_HASH :: ebpf_map_next_key( map.get(), sizeof(key), key == 0 ?(...TRUNCATED)
["map_crud_operations:BPF_MAP_TYPE_PERCPU_HASH :: *reinterpret_cast<uint64_t*>(value.data()) == key (...TRUNCATED)
starryzhang/sweb.eval.win.microsoft_1776_ebpf-for-windows-4117
microsoft/STL
5444
microsoft__STL-5444
C++
[ "5291", "5435" ]
1e0317478eddc973e801bdacc10cee2df9943b82
"diff --git a/stl/CMakeLists.txt b/stl/CMakeLists.txt\nindex ac17fb0a55f..10d21b3173c 100644\n--- a/(...TRUNCATED)
"diff --git a/tests/libcxx/expected_results.txt b/tests/libcxx/expected_results.txt\nindex 64b389eaf(...TRUNCATED)
"LWG-4186 `regex_traits::transform_primary` mistakenly detects `typeid` of a function\nLWG-4186 `reg(...TRUNCATED)
"More generally, `regex_traits::transform_primary()` currently implements the general traits require(...TRUNCATED)
"More generally, `regex_traits::transform_primary()` currently implements the general traits require(...TRUNCATED)
["https://github.com/microsoft/STL/commit/898777a69c30cbc8d564b92262db306f51c2dd8f","https://github.(...TRUNCATED)
2025-04-26T18:40:04Z
https://github.com/microsoft/STL/tree/1e0317478eddc973e801bdacc10cee2df9943b82
["git config --global --add safe.directory C:/testbed ; git submodule update --init --progress ; cmd(...TRUNCATED)
["cmd /c '\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\Common7\\Tools\\VsDe(...TRUNCATED)
["cmd /c '\"C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\Common7\\Tools\\VsDe(...TRUNCATED)
"def parser(log: str) -> dict[str, str]:\n import re\n\n results: dict[str, str] = {}\n\n d(...TRUNCATED)
["libc++::std/containers/associative/multimap/multimap.erasure/erase_if.pass.cpp:0","libc++::std/con(...TRUNCATED)
["libc++::std/algorithms/alg.nonmodifying/alg.find.end/find_end.pass.cpp:2","libc++::std/algorithms/(...TRUNCATED)
starryzhang/sweb.eval.win.microsoft_1776_stl-5444
elastic/beats
43665
elastic__beats-43665
Go
[ "22172", "40765" ]
10858f98cf8f14e1de51b195bba607c784bc6c90
"diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc\nindex 6dff17ecc0ed..83a5c19cb5c9 10(...TRUNCATED)
"diff --git a/metricbeat/module/windows/service/reader_test.go b/metricbeat/module/windows/service/r(...TRUNCATED)
"Flaky Test [Build&Test / metricbeat-windows-windows-2019 / TestGetServiceStates – service]\n## Fl(...TRUNCATED)
"## Flaky Test\n\n* **Test Name:** Build&Test / metricbeat-windows-windows-2019 / TestGetServiceStat(...TRUNCATED)
"## Flaky Test\n\n* **Test Name:** Build&Test / metricbeat-windows-windows-2019 / TestGetServiceStat(...TRUNCATED)
["https://github.com/elastic/beats/commit/4fb53fe02f478a2a0f62b44ba3a998d0a6145ce7","https://github.(...TRUNCATED)
2025-04-03T12:00:25Z
https://github.com/elastic/beats/tree/10858f98cf8f14e1de51b195bba607c784bc6c90
["go mod tidy ; go build ./libbeat/... ./filebeat/... ./metricbeat/... ./heartbeat/... ./packetbeat/(...TRUNCATED)
[ "go test -json -v ./... > reports\\go-test-results.json" ]
[ "Get-Content -Raw reports\\go-test-results.json" ]
"def parser(log: str) -> dict[str, str]:\n import re\n \n results: dict[str, st(...TRUNCATED)
["github.com/elastic/beats/v7/libbeat/common/TestEquals/when_we_have_the_sa","github.com/elastic/bea(...TRUNCATED)
["github.com/elastic/beats/v7/heartbeat/monitors/wrappers/TestAdditionalStdFields//with_service_name(...TRUNCATED)
starryzhang/sweb.eval.win.elastic_1776_beats-43665
crc-org/crc
4576
crc-org__crc-4576
Go
[ "4561" ]
ab8cf0bebe03dfca59600973979b0ffe6cb51991
"diff --git a/cmd/crc/cmd/console.go b/cmd/crc/cmd/console.go\nindex bdd5c6a385..a21d939200 100644\n(...TRUNCATED)
"diff --git a/cmd/crc/cmd/console_test.go b/cmd/crc/cmd/console_test.go\nindex 0910dfb809..d17359b62(...TRUNCATED)
"[BUG] `crc console` gives incorrect output on microshift preset\n### General information\n\nI was t(...TRUNCATED)
[ "https://github.com/crc-org/crc/commit/4224b50e29c7facc9d0e06430174e49d1746d4bd" ]
2025-01-17T16:26:33Z
https://github.com/crc-org/crc/tree/ab8cf0bebe03dfca59600973979b0ffe6cb51991
[ "go mod tidy ; go install -tags \"containers_image_openpgp\" ./cmd/crc" ]
["powershell.exe -NoProfile -Command \"New-Item -ItemType Directory -Force -Path reports | Out-Null;(...TRUNCATED)
[ "cat reports\\go-test-results.json" ]
"def parser(log: str) -> dict[str, str]:\n import re\n\n results: dict[str, str] = {}\n pre(...TRUNCATED)
["TestSetProvidedValue","TestSetProvidedValuesOverrideDefaultVValuesInConfig/enable-emergency-login"(...TRUNCATED)
["TestRenderActionJSONSuccess","TestSetProvidedValuesOverrideDefaultVValuesInConfig/consent-telemetr(...TRUNCATED)
starryzhang/sweb.eval.win.crc-org_1776_crc-4576
goreleaser/goreleaser
5631
goreleaser__goreleaser-5631
Go
[ "5632" ]
935e9a6c3fcfd56e1bfa61f5c1abf117bc89c1cd
"diff --git a/internal/pipe/archive/archive.go b/internal/pipe/archive/archive.go\nindex 93e0cfaf637(...TRUNCATED)
"diff --git a/internal/pipe/archive/archive_test.go b/internal/pipe/archive/archive_test.go\nindex e(...TRUNCATED)
"Linux binary in ZIP file built on Windows does not have executable bit\nThis is a regression of an (...TRUNCATED)
[ "https://github.com/goreleaser/goreleaser/commit/7edfde93ae854c6be9c0e10713db0e244e0d1147" ]
2025-03-08T15:02:16Z
https://github.com/goreleaser/goreleaser/tree/935e9a6c3fcfd56e1bfa61f5c1abf117bc89c1cd
[ "go mod tidy ; go build ." ]
[ "go test -json -v ./... 2>&1 | Tee-Object -FilePath reports\\go-test-results.json" ]
[ "Get-Content -Path reports\\go-test-results.json" ]
"def parser(log: str) -> dict[str, str]:\n # Further improved parser for go test -json style outp(...TRUNCATED)
["github.com/goreleaser/goreleaser/v2/internal/pipe/announce::TestAnnounceAllDisaabled","github.com/(...TRUNCATED)
["github.com/goreleaser/goreleaser/v2/internal/pipe/changelog::TestGetChangeloger/ggithub_no_previou(...TRUNCATED)
starryzhang/sweb.eval.win.goreleaser_1776_goreleaser-5631
lima-vm/lima
3280
lima-vm__lima-3280
Go
[ "2775" ]
439c9de34eaccaa2910f7df55608b1c1d8ecbcba
"diff --git a/hack/common.inc.sh b/hack/common.inc.sh\nindex 1e90ff8e15d..95e429fce0a 100644\n--- a/(...TRUNCATED)
"diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml\nindex a5157e73a98..5542708ab0(...TRUNCATED)
"Windows CI began to fail on Oct 21\n#2769 passed the CI, but its merge commit and later ones are fa(...TRUNCATED)
"In https://github.com/lima-vm/lima/actions/runs/11445753347/job/31843450765?pr=2778 I see:\r\n\r\n`(...TRUNCATED)
"In https://github.com/lima-vm/lima/actions/runs/11445753347/job/31843450765?pr=2778 I see:\r\n\r\n`(...TRUNCATED)
[ "https://github.com/lima-vm/lima/commit/22d86cc1fc04d4de8b9ff73ecfa6ce9c7c9a360a" ]
2025-02-25T21:58:52Z
https://github.com/lima-vm/lima/tree/439c9de34eaccaa2910f7df55608b1c1d8ecbcba
[ "go mod download ; go build ./..." ]
["New-Item -ItemType Directory -Path reports -Force ^| Out-Null; go test -v -json ./... *> reports\\(...TRUNCATED)
[ "Get-Content -LiteralPath reports\\go-test-results.json" ]
"def parser(log: str) -> dict[str, str]:\n # Robust Go test parser:\n # - Prefer scanning '---(...TRUNCATED)
["TestUsernetConfig/verify_gateway_ipp","TestDownloadRemote/caching-only_mode/paraallel","TestSearch(...TRUNCATED)
["TestParseIOPlatformUUIDFromIOPlatformExpertDeevice","TestParseQemuVersion","TestSearchDomain/searc(...TRUNCATED)
starryzhang/sweb.eval.win.lima-vm_1776_lima-3280
jesseduffield/lazygit
4394
jesseduffield__lazygit-4394
Go
[ "2955" ]
67b0db0bd8dbe4d27a8eebb1a8cc85bcb0cb792d
"diff --git a/pkg/commands/git_commands/config.go b/pkg/commands/git_commands/config.go\nindex 5ea8f(...TRUNCATED)
"diff --git a/pkg/commands/git_commands/rebase_test.go b/pkg/commands/git_commands/rebase_test.go\ni(...TRUNCATED)
"Lazygit hangs when creating a new tag with `tag.gpgSign = true` and empty description\n## Describe (...TRUNCATED)
"This should at the very least show an error message of why it isn't completing.\nThis bug report sa(...TRUNCATED)
"This should at the very least show an error message of why it isn't completing.\nThis bug report sa(...TRUNCATED)
["https://github.com/jesseduffield/lazygit/commit/52da806c5713e4bdbc3be05bc1f78124950c7e9f","https:/(...TRUNCATED)
2025-03-14T04:25:35Z
https://github.com/jesseduffield/lazygit/tree/67b0db0bd8dbe4d27a8eebb1a8cc85bcb0cb792d
[ "$env:GOFLAGS = \"-mod=vendor\"; go mod vendor; go build" ]
["$env:GOFLAGS = \"-mod=vendor\"; New-Item -ItemType Directory -Force -Path reports | Out-Null; go t(...TRUNCATED)
[ "Get-Content reports/unit.json; Get-Content reports/integration.json" ]
"def parser(log: str) -> dict[str, str]:\n import re\n\n results: dict[str, str] = {}\n\n #(...TRUNCATED)
["TestCommitCommitCmdObjj/Commit_with_signoff_and_no-verify","TestGetBindingSections/grouped_bindinn(...TRUNCATED)
["TestRenderCommitGraph/neww_merge_path_fills_gap_before_continuing_path_on_right","TestPrevIndex/no(...TRUNCATED)
starryzhang/sweb.eval.win.jesseduffield_1776_lazygit-4394
lima-vm/lima
3300
lima-vm__lima-3300
Go
[ "3164", "3167", "3215" ]
bfac818e090fd18b69a9c47036bb4f6e4855f694
"diff --git a/cmd/limactl/copy.go b/cmd/limactl/copy.go\nindex d6333399a22..44263e20838 100644\n--- (...TRUNCATED)
"diff --git a/hack/test-templates.sh b/hack/test-templates.sh\nindex f0ec7263ae9..ead67b70401 100755(...TRUNCATED)
"`limactl shell` working directory switching is not Windows host aware\n### Description\n\nThere is (...TRUNCATED)
"I'm open to work on a PR, when the acceptable solution is outlined.\n\n\n\nDocker handles this by l(...TRUNCATED)
"I'm open to work on a PR, when the acceptable solution is outlined.\n\n\n\nDocker handles this by l(...TRUNCATED)
[ "https://github.com/lima-vm/lima/commit/9f52194a3f13055eca8db297240126a0b91a8b51" ]
2025-03-03T16:44:26Z
https://github.com/lima-vm/lima/tree/bfac818e090fd18b69a9c47036bb4f6e4855f694
[ "go mod download ; go build ./..." ]
[ "go test -json ./... > reports\\go-test-results.json" ]
[ "cat reports\\go-test-results.json" ]
"def parser(log: str) -> dict[str, str]:\n import re\n\n results: dict[str, str] = {}\n\n #(...TRUNCATED)
[ "TestLimaUserUid", "TestLimaUserAdminOld", "TestLimaUserGid", "TestLimaUserInvalid" ]
["TestSearchDomain/search_domain","TestSetupEnv/127.0.0.1:8080","TestMarshalEmpty","TestSetupEnv/127(...TRUNCATED)
starryzhang/sweb.eval.win.lima-vm_1776_lima-3300
End of preview. Expand in Data Studio

Official repository link: microsoft/SWE-bench-Live

Paper link: https://arxiv.org/abs/2603.05026

Developing projects compatible on Windows platform is important to expand the user market.

There are some bugs that would only occur on Windows. To migrate projects to Windows some codes need to be rewritten to have branching points across different os or use cross-platform compatible libraries...

To test LLM's knowledge of Windows-specific SWE knowledge AND powershell terminal operation capability, we propose SWE-bench-Live-Windows, a dataset of Windows specific SWE tasks.

The tasks are also native GitHub issues like SWE-bench-Live Python and MultiLang subsets.

The instances are also set up to docker images using our RepoLaunch agent (repository_link). See the "docker_image" field for image name. Note that the docker images are Windows architecture images that should be run on Windows systems.

We have successfully run our own Win-agent (https://github.com/njukenanli/Win-Agent) with different LLMs on this benchmark and posted their success rates on our leaderboard.

Dataset Schema

Field Type
instance_id str
repo str
language str
pull_number str
issue_numbers list[str]
base_commit str
problem_statement str
patch str
test_patch str
hints_text Optional[str] from the discussions of the issue
all_hints_text Optional[str]
commit_urls list[str]
created_at str in ISO datetime format
commit_url str
rebuild_cmds list[str]
test_cmds list[str]
log_parser str
FAIL_TO_PASS list[str]
PASS_TO_PASS list[str]
docker_image str

Evaluation Protocol

SWE-bench-Live evaluation strictly follows the original SWE-bench protocol:

  1. During a rollout, the agent may access only the problem_statement field of the Hugging Face dataset and the docker image of the task instance. It must not access any other fields, such as hint, FAIL_TO_PASS, or test_patch. The test_patch must not be applied to the repository before or during the rollout. The agent must perform a single rollout based solely on the problem_statement on the docker container started from the image of the task instance.
  2. Prompts, skills, and workflow instructions provided to the agent must not contain solutions specific to any task instance. They may contain only general instructions for the entire benchmark or, at most, for a specific repository. The agent must not use results from the ground-truth evaluation script to refine its solution.

Compliant prompts should follow the SWE-agent prompt and the OpenHands prompt, which contain only the problem statement and general workflow instructions.

When submitting results to our submissions repository, you must include your agent's raw rollout trajectories so that the maintainers can verify compliance with the SWE-bench protocol. A trajectory consists of the complete sequence of inputs to and outputs from your agent across all rollout rounds for a given task instance, including the initial prompt provided to the agent. Please follow this SWE-agent compliant trajectory example when submitting your result. If your organization's policies prohibit sharing the complete set of trajectories, you must provide at least some representative samples for verification. There is a checklist when submitting a PR to help you check whether you meet the protocol requirements again.

Downloads last month
1,647

Collections including SWE-bench-Live/Windows

Paper for SWE-bench-Live/Windows