diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2019-07-06 22:12:29 -0700 |
---|---|---|
committer | Timothee Cour <timothee.cour2@gmail.com> | 2019-07-08 15:24:20 -0700 |
commit | 5fce81edfd7690582ac4c5fec37cd418061f6334 (patch) | |
tree | e080d87650a0c681fc863b9964fda289acec5622 /tests | |
parent | 6375df4c5351e23fd1e067d9e93186eef37bfe0c (diff) | |
download | Nim-5fce81edfd7690582ac4c5fec37cd418061f6334.tar.gz |
make tests/concepts/t3330.nim disabled again: the order of candidates is machine dependent
Diffstat (limited to 'tests')
-rw-r--r-- | tests/concepts/t3330.nim | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/concepts/t3330.nim b/tests/concepts/t3330.nim index 5ff429d89..3314ee0a6 100644 --- a/tests/concepts/t3330.nim +++ b/tests/concepts/t3330.nim @@ -1,6 +1,6 @@ discard """ errormsg: "type mismatch: got <Bar[system.int]>" -disabled: "false" +disabled: "true" nimout: ''' t3330.nim(78, 4) Error: type mismatch: got <Bar[system.int]> but expected one of: @@ -46,10 +46,10 @@ t3330.nim(71, 6) Foo: 'bar.x' cannot be assigned to expression: test(bar)''' """ - - - - +# Note: the test currently fails because the candidates are presented in +# different order on travis with `NIM_COMPILE_TO_CPP=false CPU=i386`; +# a possible fix would be to sort the candidates by proc signature or +# declaration location |