Closed espringe closed 11 years ago
Failing spec and (a new library function! ;D) can be seen here:
https://github.com/NICTA/scoobi/tree/zip-with-index
Note, to reproduce this bug -- issue #213 needs to first be fixed (or worked around, by changing
https://github.com/NICTA/scoobi/blob/zip-with-index/src/main/scala/com/nicta/scoobi/core/DList.scala#L187
to:
emitter.emit(0 -> input)
(i.e. make it deterministic)
How do you run scoobi tests inmemory mode? If I'm not mistake, running this spec inmemorymode should pass, but with MR should fail
How do you run scoobi tests inmemory mode?
You need to do the following:
test-only *DListSpec* -- scoobi !local.verbose.all.[.*.*]
The last [.*.*] is just a workaround for something I need to fix.
[.*.*]
Failing spec and (a new library function! ;D) can be seen here:
https://github.com/NICTA/scoobi/tree/zip-with-index
Note, to reproduce this bug -- issue #213 needs to first be fixed (or worked around, by changing
https://github.com/NICTA/scoobi/blob/zip-with-index/src/main/scala/com/nicta/scoobi/core/DList.scala#L187
to:
emitter.emit(0 -> input)
(i.e. make it deterministic)
How do you run scoobi tests inmemory mode? If I'm not mistake, running this spec inmemorymode should pass, but with MR should fail