You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had a hard time writing a failing test using the with-cpp-file macro: It always succeeded because @body is evaluated using an async callback (while Emacs already exited).
I added
(while (get-process "cmake")
(sleep-for 0.1))
after the with-cpp-file usage. Now the callback for test-one-cpp-fileis evaluated, but fails:
I had a hard time writing a failing test using the
with-cpp-file
macro: It always succeeded because@body
is evaluated using an async callback (while Emacs already exited).I added
after the
with-cpp-file
usage. Now the callback fortest-one-cpp-file
is evaluated, but fails:The text was updated successfully, but these errors were encountered: