about summary refs log tree commit diff stats
path: root/030container.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-02-25 22:08:27 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-02-25 22:08:27 -0800
commita3a0574f17424cb67c1be120b01d6b57771bbbfe (patch)
tree96a57a8e07fa19c15db259bd27ca6c65fe467165 /030container.cc
parent5d2a486d9de25dc98d19ef91154e12a8c8efbe87 (diff)
downloadmu-a3a0574f17424cb67c1be120b01d6b57771bbbfe.tar.gz
2709
Only Hide_errors when strictly necessary. In other places let test
failures directly show the unexpected error.
Diffstat (limited to '030container.cc')
-rw-r--r--030container.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/030container.cc b/030container.cc
index 6b7f3dc0..1e5f40ee 100644
--- a/030container.cc
+++ b/030container.cc
@@ -522,7 +522,6 @@ recipe main [
 +error: main: unknown type integer in '1:integer <- copy 0'
 
 :(scenario run_allows_type_definition_after_use)
-% Hide_errors = true;
 recipe main [
   1:bar <- copy 0/unsafe
 ]
@@ -644,7 +643,6 @@ case MERGE: {
 //: type-check 'merge' to avoid interpreting numbers as addresses
 
 :(scenario merge_check)
-% Hide_errors = true;
 recipe main [
   1:point <- merge 3, 4
 ]
@@ -670,7 +668,6 @@ recipe main [
 //: container fields.
 
 :(scenario merge_check_recursive_containers)
-% Hide_errors = true;
 recipe main [
   1:point <- merge 3, 4
   1:point-number <- merge 1:point, 5
@@ -686,7 +683,6 @@ recipe main [
 +error: main: too few ingredients in '2:point-number <- merge 1:point'
 
 :(scenario merge_check_recursive_containers_3)
-% Hide_errors = true;
 recipe main [
   1:point-number <- merge 3, 4, 5
 ]