Commit graph

3 commits

Author SHA1 Message Date
Gabriele Tozzi
96fb55fee2 Tests: re-added string20, support multiple runs 2016-01-25 02:26:54 +01:00
Gabriele Tozzi
95b41a1e9b Temporarily disabling the string20 test case until weird comparison is addressed
The comparison (< and > operators) between objects of different types is
now based on object's addresses in memory. This leads to unpredictable results
and causes troubles with test scripts.

Proposed solution is:
- This is undefined behavior and could change in future, leave it undocumented
- Error and Undefined should always be < than any other object
- Objects of different type should compare < or > based on their Type ID
- Objects of the same type should always have comparison method implemented.
  The code should not compile if those methods have not been implemented.
2016-01-20 21:56:13 +01:00
Gabriele Tozzi
c4747601cb Test suite: added extensive string tests
Will be helpful for later comparisons while implementing unicode
2015-12-26 13:58:51 +01:00