Add more integration tests to the GDScript test suite

This also fixes a typo in the `bitwise_float_right_operand.gd` test.
This commit is contained in:
Hugo Locurcio 2021-09-15 19:09:34 +02:00
parent 520462e98c
commit c6ca09dc6f
No known key found for this signature in database
GPG key ID: 39E8F8BE30B0A49C
30 changed files with 245 additions and 2 deletions

View file

@ -1,3 +1,3 @@
func test():
# Error here.
print(2 << 4.4)
print(2 >> 4.4)

View file

@ -1,2 +1,2 @@
GDTEST_ANALYZER_ERROR
Invalid operands to operator <<, int and float.
Invalid operands to operator >>, int and float.