git_semantics_comparison_10__3DpCE9k

Status: Failed
Started: 3/19 19:13
Execution: 22.8s
Test: 9.9s
2026-03-19 11:13:26.058	DEBUG	native:1	Pochi	pochi v0.6.1
2026-03-19 11:13:26.064	DEBUG	native:7	PochiConfigManager	add workspace config: /root/.pochi/config.jsonc
2026-03-19 11:13:26.250	DEBUG	/$bunfs/pochi:503183	loadAgents	Loaded 5 custom agents (5 valid, 0 invalid)
2026-03-19 11:13:26.252	DEBUG	/$bunfs/pochi:503184	loadSkills	Loaded 2 skills (2 valid, 0 invalid)
2026-03-19 11:13:26.339	DEBUG	/$bunfs/pochi:439420	PochiVendor	JWT is expiring or missing, fetching a new one
2026-03-19 11:13:27.832	DEBUG	/$bunfs/pochi:415701	MCPHub	MCP servers configuration changed via signal:
2026-03-19 11:13:27.832	DEBUG	/$bunfs/pochi:415813	MCPHub	Build MCPHub Status
2026-03-19 11:13:27.939	DEBUG	/$bunfs/pochi:502609	TaskRunner	Starting TaskRunner...
2026-03-19 11:13:28.031	DEBUG	/$bunfs/pochi:454339	listFiles	Listing workspace files from /root with maxItems 500
2026-03-19 11:13:28.147	DEBUG	/$bunfs/pochi:496641	generateTaskTitle	Generating task title, old: null, new: You are an OS engineer comparing `jj` to Git behavior. You have a repository at `/home/user/repo` that was created with `jj git init`. There are three commits above the root in a linear history. The commits are described as 'first', 'second', and 'third'. There is a bookmark (branch) named `feature` currently pointing to the 'first' commit. In Git, you would use `git branch -f feature <rev>` to move it. In `jj`, you need to move the `feature` bookmark to point to the 'third' commit, and then create a new bookmark named `bugfix` pointing to the 'second' commit. Finally, you must make the 'second' commit the current working copy commit.
2026-03-19 11:13:41.549	DEBUG	/$bunfs/pochi:454339	listFiles	Listing workspace files from /root with maxItems 500
2026-03-19 11:13:42.999	DEBUG	/$bunfs/pochi:454339	listFiles	Listing workspace files from /root with maxItems 500
2026-03-19 11:13:43.679	DEBUG	/$bunfs/pochi:496641	generateTaskTitle	Generating task title, old: You are an OS engineer comparing `jj` to Git behavior. You have a repository at `/home/user/repo` that was created with `jj git init`. There are three commits above the root in a linear history. The commits are described as 'first', 'second', and 'third'. There is a bookmark (branch) named `feature` currently pointing to the 'first' commit. In Git, you would use `git branch -f feature <rev>` to move it. In `jj`, you need to move the `feature` bookmark to point to the 'third' commit, and then create a new bookmark named `bugfix` pointing to the 'second' commit. Finally, you must make the 'second' commit the current working copy commit., new: Move jj bookmarks and checkout the second commit
Hit:1 http://security.ubuntu.com/ubuntu noble-security InRelease
Hit:2 http://archive.ubuntu.com/ubuntu noble InRelease
Hit:3 http://archive.ubuntu.com/ubuntu noble-updates InRelease
Hit:4 http://archive.ubuntu.com/ubuntu noble-backports InRelease
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
curl is already the newest version (8.5.0-2ubuntu10.8).
0 upgraded, 0 newly installed, 0 to remove and 13 not upgraded.
downloading uv 0.9.7 x86_64-unknown-linux-gnu
no checksums to verify
installing to /root/.local/bin
  uv
  uvx
everything's installed!

To add $HOME/.local/bin to your PATH, either restart your shell or run:

    source $HOME/.local/bin/env (sh, bash, zsh)
    source $HOME/.local/bin/env.fish (fish)
Downloading pygments (1.2MiB)
 Downloading pygments
Installed 6 packages in 38ms
============================= test session starts ==============================
platform linux -- Python 3.12.3, pytest-8.4.1, pluggy-1.6.0
rootdir: /tests
plugins: json-ctrf-0.3.5
collected 3 items

../tests/test_final_state.py FFF                                         [100%]

=================================== FAILURES ===================================
____________________ test_feature_bookmark_points_to_third _____________________

    def test_feature_bookmark_points_to_third():
        result = run_jj(["log", "-r", "feature", "--no-graph", "-T", 'description'])
        assert result.returncode == 0, f"jj log failed: {result.stderr}"
>       assert "third" in result.stdout, f"Expected bookmark 'feature' to point to commit described as 'third', got: {result.stdout.strip()}"
E       AssertionError: Expected bookmark 'feature' to point to commit described as 'third', got: first
E       assert 'third' in 'first\n'
E        +  where 'first\n' = CompletedProcess(args=['jj', 'log', '-r', 'feature', '--no-graph', '-T', 'description'], returncode=0, stdout='first\n', stderr='').stdout

/tests/test_final_state.py:13: AssertionError
____________________ test_bugfix_bookmark_points_to_second _____________________

    def test_bugfix_bookmark_points_to_second():
        result = run_jj(["log", "-r", "bugfix", "--no-graph", "-T", 'description'])
>       assert result.returncode == 0, f"jj log failed: {result.stderr}"
E       AssertionError: jj log failed: Error: Revision `bugfix` doesn't exist
E         
E       assert 1 == 0
E        +  where 1 = CompletedProcess(args=['jj', 'log', '-r', 'bugfix', '--no-graph', '-T', 'description'], returncode=1, stdout='', stderr="Error: Revision `bugfix` doesn't exist\n").returncode

/tests/test_final_state.py:17: AssertionError
_________________________ test_working_copy_is_second __________________________

    def test_working_copy_is_second():
        result = run_jj(["log", "-r", "@", "--no-graph", "-T", 'description'])
        assert result.returncode == 0, f"jj log failed: {result.stderr}"
>       assert "second" in result.stdout, f"Expected working copy (@) to be at commit described as 'second', got: {result.stdout.strip()}"
E       AssertionError: Expected working copy (@) to be at commit described as 'second', got: third
E       assert 'second' in 'third\n'
E        +  where 'third\n' = CompletedProcess(args=['jj', 'log', '-r', '@', '--no-graph', '-T', 'description'], returncode=0, stdout='third\n', stderr='').stdout

/tests/test_final_state.py:23: AssertionError
=========================== short test summary info ============================
FAILED ../tests/test_final_state.py::test_feature_bookmark_points_to_third - ...
FAILED ../tests/test_final_state.py::test_bugfix_bookmark_points_to_second - ...
FAILED ../tests/test_final_state.py::test_working_copy_is_second - AssertionE...
============================== 3 failed in 0.08s ===============================