summaryrefslogtreecommitdiff
path: root/test-suite/output-modulo-time/ltacprof.v
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/output-modulo-time/ltacprof.v')
-rw-r--r--test-suite/output-modulo-time/ltacprof.v8
1 files changed, 8 insertions, 0 deletions
diff --git a/test-suite/output-modulo-time/ltacprof.v b/test-suite/output-modulo-time/ltacprof.v
new file mode 100644
index 00000000..6611db70
--- /dev/null
+++ b/test-suite/output-modulo-time/ltacprof.v
@@ -0,0 +1,8 @@
+(* -*- coq-prog-args: ("-emacs" "-profile-ltac-cutoff" "0.0") -*- *)
+Ltac sleep' := do 100 (do 100 (do 100 idtac)).
+Ltac sleep := sleep'.
+
+Theorem x : True.
+Proof.
+ idtac. idtac. sleep. constructor.
+Defined.