summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2015-03-25 16:58:41 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2015-03-25 16:58:41 -0700
commit32522cd92f51ddacd55736e555c754fe15b43ac4 (patch)
tree65bc881f18d00891fdee39e2ba9c61431afcf268 /spec
parent9a15207dd5dc18142aaa9077ddfcd3b67e176f29 (diff)
downloadffi-yajl-32522cd92f51ddacd55736e555c754fe15b43ac4.tar.gz
add comment on why spec does not run on windows
Diffstat (limited to 'spec')
-rw-r--r--spec/ffi_yajl/parser_spec.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/spec/ffi_yajl/parser_spec.rb b/spec/ffi_yajl/parser_spec.rb
index 6ef587f..ea67879 100644
--- a/spec/ffi_yajl/parser_spec.rb
+++ b/spec/ffi_yajl/parser_spec.rb
@@ -453,6 +453,8 @@ describe "FFI_Yajl::Parser" do
end
end
+ # NOTE: parsing floats with 8 million digits on windows has some kind of huge
+ # perf issues likely in ruby and/or the underlying windows libs
context "when parsing big floats", :ruby_gte_193 => true, :unix_only => true do
let(:json) { '[0.' + '1' * 2**23 + ']' }