aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorGaëtan Gilbert2018-07-13 15:08:17 +0200
committerGaëtan Gilbert2018-10-09 13:26:21 +0200
commit60fe31e2424383abaa6c7a86aa65a76bbbc7eff3 (patch)
tree1ab4ff0993b7562e490b0c85c5269d94e24d8001 /test-suite
parent59de2827b63b5bc475452bef385a2149a10a631c (diff)
Fix nativenorm when an evar is in the wrong place.
See commit [Simplify code for [Definition := Eval ...]] which without this breaks test suite 7631.v
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/bug_7631.v2
1 files changed, 2 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_7631.v b/test-suite/bugs/closed/bug_7631.v
index 34eb8b8676..93aeb83e28 100644
--- a/test-suite/bugs/closed/bug_7631.v
+++ b/test-suite/bugs/closed/bug_7631.v
@@ -7,6 +7,7 @@ Section Foo.
Let bar := foo.
Eval native_compute in bar.
+Eval vm_compute in bar.
End Foo.
@@ -17,5 +18,6 @@ Module RelContext.
Definition foo := true.
Definition bar (x := foo) := Eval native_compute in x.
+Definition barvm (x := foo) := Eval vm_compute in x.
End RelContext.