Commit Briefs

a184c764f0 Thomas Adam

tog: teach test harness to count and basic tree tests

Add count instruction to the test harness to simulate count modifier compound keys (e.g., 11j), and add basic tests for the tree view. ok stsp@


13bc6832b9 Thomas Adam

tog regress: zap needless defines and use "vt220" TERM

Also, overwrite - and | unconditionally when capturing screen dumps, and unset TOG_COLORS and TOG_DIFF_ALGORITHM in regress setup. All tweaks suggested by naddy@ ok stsp@


1134ebde7e Thomas Adam

tog regress: use pthread conditions for wait instruction

As suggested by stsp, rather than busy wait in the view loop, use pthread conditions to wait for the blame thread to signal completion before drawing the screen. We can add more conditions for other views when needed, but by keeping the general WAIT_FOR_UI instruction and flag, this should make their use context-dependent so we won't need more test harness WAIT_* instructions. ok stsp@


f3000d9057 Thomas Adam

bump version number


5e9566160a Thomas Adam

changes for 0.87


f912f45ab8 Thomas Adam

sync dist file list





1678610c6d Thomas Adam

allow no-op merge commits to be created

Requested by James Cook


538aebb56b Thomas Adam

fix 'got commit' using a bad parent commit ID when worktree is out-of-date

Problem reported by James Cook with reproduction scripts Regression test case by jamsek, as a simplified version of James' scripts fix tested + ok jamsek


9d9cab5e3a Thomas Adam

tog: lock mutex if leaving view_loop() on a script read error

ok stsp@


4334634cb7 Thomas Adam

tog: tweak blame tog_view deallocation fix from 2ca2f982

Both view_close() and close_blame_view() are called from view_loop() irrespective of error, so only call these from cmd_blame() to ensure the tog_view structure is not leaked when open_blame_view() errors. ok stsp@


8e778ade03 Thomas Adam

tog: blame regress and new test framework wait instruction

Basic blame view test required adding the WAIT_FOR_UI instruction to delay screen dumps till the ui has been completely rendered. This will also apply to future test cases such as limited log views and further blame test cases. ok stsp@


fa9bb690d2 Thomas Adam

tog: rename regress test script envvar

As per stsp's idea: use a more descriptive name, and use the TOG_TEST_SCRIPT envvar both in tog.c and the test scripts. ok stsp@


c5f4d357e1 Thomas Adam

tog: basic diff view test and fix hardcoded script path

ok stsp@


ca739511e7 Thomas Adam

sync dist file list



ea457a54ee Thomas Adam

gotsh no longer needs to link to libz and libm


95a3dfcf9e Thomas Adam

gotctl no longer needs to link to libz and libm



959773748b Thomas Adam

remove unused function got_read_file_to_mem()


232c0ac1b2 Thomas Adam

remove dependency of gitwrapper, gotctl, and gotsh on object_parse.c

Move some functions from object_parse.c into hash.c. These functions either require hash.c code anyway or contain object ID implementation internals. Add a new file object_qid.c, for got_object_id_queue and got_object_qid. This new file must be linked to virtually every program.


48488136e0 Thomas Adam

remove dependency of gitwrapper on gotd/auth.c

Move gotd_auth_parseuid() from auth.c to parse.y as gotd_parseuid(), and remove auth.c from the list of source files required by gitwrapper.


65a36f170d Thomas Adam

remove dependency of gitwrapper on gotd/listen.c

Move gotd_find_uid_connection_limit() from listen.c into parse.y and remove listen.c from the list of source files required by gitwrapper.