]> git.eshelyaron.com Git - emacs.git/commitdiff
Synchronize cedet/semantic with Emacs.
authorxscript <xscript@users.sourceforge.net>
Sun, 15 May 2011 20:16:47 +0000 (22:16 +0200)
committerEdward John Steere <edward.steere@gmail.com>
Wed, 25 Jan 2017 18:21:28 +0000 (20:21 +0200)
test/manual/cedet/cedet/semantic/idle.el [new file with mode: 0644]

diff --git a/test/manual/cedet/cedet/semantic/idle.el b/test/manual/cedet/cedet/semantic/idle.el
new file mode 100644 (file)
index 0000000..7738a91
--- /dev/null
@@ -0,0 +1,7 @@
+(defun semantic-idle-pnf-test ()
+  "Test `semantic-idle-scheduler-work-parse-neighboring-files' and time it."
+  (interactive)
+  (let ((start (current-time))
+        (junk (semantic-idle-scheduler-work-parse-neighboring-files))
+        (end (current-time)))
+    (message "Work took %.2f seconds." (semantic.elapsed-time start end))))