Skip to content

Commit

Permalink
tests/check_daemon_starts: more debug attempts
Browse files Browse the repository at this point in the history
  • Loading branch information
stsquad committed Mar 18, 2024
1 parent 79a6a8a commit 140761c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/check_daemon_starts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ emacs --daemon

sleep 1

if test "$(emacsclient -e '(if I-completed-loading-dotinit 0 -1)')" = "0"
CHECK_STATUS=$(emacsclient -e '(if I-completed-loading-dotinit 0 -1)')
echo "got $CHECK_STATUS"

if test "$CHECK_STATUS" = "0"
then
echo "Failed --daemon start-up"
exit 1
Expand Down

0 comments on commit 140761c

Please sign in to comment.