blob: 5f9bff67609cc0b80b61f07e9d1c70734ff4f131 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#! /bin/sh /usr/share/dpatch/dpatch-run
## no-complexity-test.dpatch by Julien Cristau <julien.cristau@ens-lyon.org>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Don't run complexity tests, they are far too fragile.
@DPATCH@
diff -urNad coq~/test-suite/check coq/test-suite/check
--- coq~/test-suite/check 2008-07-25 15:13:00.000000000 +0200
+++ coq/test-suite/check 2008-07-25 15:33:55.000000000 +0200
@@ -250,8 +250,8 @@
test_interactive interactive
echo "Micromega tests"
test_success micromega
-echo "Complexity tests"
-test_complexity complexity
+echo "Skipping complexity tests"
+#test_complexity complexity
echo "Module tests"
$coqtop -compile modules/Nat
$coqtop -compile modules/plik
|