Rename test files to have common prefix

This commit is contained in:
Gaith Hallak 2022-05-25 19:55:01 +04:00
parent 9e3f42db2c
commit e4db742c72
14 changed files with 13 additions and 13 deletions

View File

@ -202,12 +202,12 @@ compilable_contracts() ->
"assign_patterns", "assign_patterns",
"patterns_guards", "patterns_guards",
"pipe_operator", "pipe_operator",
"contract_polymorphism", "polymorphism_contract_implements_interface",
"contract_polymorphism_multi_interface", "polymorphism_contract_multi_interface",
"contract_interface_polymorphism", "polymorphism_contract_interface_extends_interface",
"contract_polymorphism_interface_extensions", "polymorphism_contract_interface_extensions",
"contract_interface_polymorphism_same_decl_multi_interface", "polymorphism_contract_interface_same_decl_multi_interface",
"contract_interface_polymorphism_same_name_same_type", "polymorphism_contract_interface_same_name_same_type",
"test" % Custom general-purpose test file. Keep it last on the list. "test" % Custom general-purpose test file. Keep it last on the list.
]. ].
@ -831,32 +831,32 @@ failing_contracts() ->
<<?Pos(48, 5) <<?Pos(48, 5)
"Unused return value.">> "Unused return value.">>
]) ])
, ?TYPE_ERROR(contract_interface_polymorphism_recursive, , ?TYPE_ERROR(polymorphism_contract_interface_recursive,
[<<?Pos(1,24) [<<?Pos(1,24)
"Trying to implement or extend an undefined interface `Z`">> "Trying to implement or extend an undefined interface `Z`">>
]) ])
, ?TYPE_ERROR(contract_interface_polymorphism_same_name_different_type, , ?TYPE_ERROR(polymorphism_contract_interface_same_name_different_type,
[<<?Pos(4,20) [<<?Pos(4,20)
"Unimplemented function `f` from the interface `I1` in the contract `I2`">>]) "Unimplemented function `f` from the interface `I1` in the contract `I2`">>])
, ?TYPE_ERROR(contract_polymorphism_missing_implementation, , ?TYPE_ERROR(polymorphism_contract_missing_implementation,
[<<?Pos(4,20) [<<?Pos(4,20)
"Unimplemented function `f` from the interface `I1` in the contract `I2`">> "Unimplemented function `f` from the interface `I1` in the contract `I2`">>
]) ])
, ?TYPE_ERROR(contract_polymorphism_same_decl_multi_interface, , ?TYPE_ERROR(polymorphism_contract_same_decl_multi_interface,
[<<?Pos(7,10) [<<?Pos(7,10)
"Unimplemented function `f` from the interface `J` in the contract `C`">> "Unimplemented function `f` from the interface `J` in the contract `C`">>
]) ])
, ?TYPE_ERROR(contract_polymorphism_undefined_interface, , ?TYPE_ERROR(polymorphism_contract_undefined_interface,
[<<?Pos(1,14) [<<?Pos(1,14)
"Trying to implement or extend an undefined interface `I`">> "Trying to implement or extend an undefined interface `I`">>
]) ])
, ?TYPE_ERROR(contract_polymorphism_same_name_different_type_multi_interface, , ?TYPE_ERROR(polymorphism_contract_same_name_different_type_multi_interface,
[<<?Pos(9,5) [<<?Pos(9,5)
"Duplicate definitions of `f` at\n" "Duplicate definitions of `f` at\n"
" - line 8, column 5\n" " - line 8, column 5\n"
" - line 9, column 5">> " - line 9, column 5">>
]) ])
, ?TYPE_ERROR(contract_interface_polymorphism_undefined_interface, , ?TYPE_ERROR(polymorphism_contract_interface_undefined_interface,
[<<?Pos(1,24) [<<?Pos(1,24)
"Trying to implement or extend an undefined interface `H`">> "Trying to implement or extend an undefined interface `H`">>
]) ])