]> git.eshelyaron.com Git - emacs.git/commitdiff
(cit-finish-message): Add a pause, then exit with a status of "1".
authorzappo <zappo@users.sourceforge.net>
Sat, 8 Aug 2009 22:15:54 +0000 (22:15 +0000)
committerEdward John Steere <edward.steere@gmail.com>
Wed, 25 Jan 2017 16:42:20 +0000 (18:42 +0200)
test/manual/cedet/cedet-integ-test.el

index e8330cca86c45eee0e48af869ba6c04adb335df6..5ac9f165c70d3030e4beb1c364739a7d879538b3 100644 (file)
@@ -166,7 +166,13 @@ Argument STYLE is the type of build done."
     (erase-buffer)
     (insert "\n\n  PASSED!\n\n  Make Style: ")
     (insert (format "%S" style) "\n")
+    (insert "\n\nWaiting 5 seconds before exiting with positive exit status.\n")
     (switch-to-buffer b)
+    ;; Now wait.
+    (sit-for 5)
+    ;; 1 means GOOD to the shell script, since any other emacs exit
+    ;; mechanism will be 0. (ie - click on the X in the corner.)
+    (kill-emacs 1)
     ))
 
 (defun cit-make-dir (dir)