Three separate CI fixes(!)
This commit is contained in:
Kartik K. Agaram 2016-09-14 01:56:41 -07:00
parent 9a1d39bac2
commit 445bc53e6a
2 changed files with 7 additions and 3 deletions

View File

@ -74,8 +74,8 @@ bool all_reagents_match(const recipe& r1, const recipe& r2) {
return false;
}
for (int i = 0; i < SIZE(r1.products); ++i) {
expand_type_abbreviations(r1.ingredients.at(i).type);
expand_type_abbreviations(r2.ingredients.at(i).type);
expand_type_abbreviations(r1.products.at(i).type);
expand_type_abbreviations(r2.products.at(i).type);
if (!deeply_equal_type_names(r1.products.at(i), r2.products.at(i)))
return false;
}
@ -616,7 +616,9 @@ def foo a:boolean -> b:number [
:(scenario override_methods_with_type_abbreviations)
type string = address:array:character
def main [
1:number/raw <- foo [abc]
local-scope
s:address:array:character <- new [abc]
1:number/raw <- foo s
]
def foo a:address:array:character -> result:number [
return 34

View File

@ -74,4 +74,6 @@ then
./mu_bin test edit/00* edit/010* || exit 1
echo "=== edit: until 011"
./mu_bin test edit/00* edit/01[01]* || exit 1
echo "=== edit: until 012"
./mu_bin test edit/00* edit/01[0-2]* || exit 1
fi