|
|
@@ -81,7 +81,9 @@ EXAMPLES = [
|
|
|
"fun6_fail_type",
|
|
|
"funptr1",
|
|
|
"if1",
|
|
|
- "if2",
|
|
|
+ # (Temporarily disabled pending
|
|
|
+ # https://github.com/carbon-language/carbon-lang/issues/311)
|
|
|
+ # "if2",
|
|
|
"if3",
|
|
|
"match_int_default",
|
|
|
"match_int",
|
|
|
@@ -107,7 +109,7 @@ EXAMPLES = [
|
|
|
srcs = ["testdata/%s.6c" % e],
|
|
|
outs = ["testdata/%s.out" % e],
|
|
|
# Suppress command errors.
|
|
|
- cmd = "$(location executable_semantics) $< > $@ 2>&1 || true",
|
|
|
+ cmd = "$(location executable_semantics) $< > $@ 2>&1 || echo EXIT CODE: $$? >> $@",
|
|
|
tools = [":executable_semantics"],
|
|
|
) for e in EXAMPLES]
|
|
|
|