You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: jsoniter-scala-benchmark/js/src/test/scala-2/com/github/plokhotnyuk/jsoniter_scala/benchmark/BigIntReadingSpec.scala
+4-2
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,8 @@ class BigIntReadingSpec extends BenchmarkSpecBase {
18
18
benchmark.jsoniterScala() shouldBe benchmark.obj
19
19
//FIXME: Play-JSON looses significant digits in BigInt values
20
20
//benchmark.playJson() shouldBe benchmark.obj
21
-
benchmark.smithy4sJson() shouldBe benchmark.obj
21
+
// FIXME: smithy4sJson parses up to 308 digits only
22
+
//benchmark.smithy4sJson() shouldBe benchmark.obj
22
23
benchmark.uPickle() shouldBe benchmark.obj
23
24
benchmark.zioJson() shouldBe benchmark.obj
24
25
}
@@ -32,7 +33,8 @@ class BigIntReadingSpec extends BenchmarkSpecBase {
32
33
//FIXME: circe-jsoniter parses up to 308 digits only
33
34
//intercept[Throwable](b.circeJsoniter())
34
35
intercept[Throwable](b.jsoniterScala())
35
-
intercept[Throwable](b.smithy4sJson())
36
+
// FIXME: smithy4sJson parses up to 308 digits only
Copy file name to clipboardExpand all lines: jsoniter-scala-benchmark/js/src/test/scala-3/com/github/plokhotnyuk/jsoniter_scala/benchmark/BigIntReadingSpec.scala
+4-2
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,8 @@ class BigIntReadingSpec extends BenchmarkSpecBase {
17
17
benchmark.jsoniterScala() shouldBe benchmark.obj
18
18
//FIXME: Play-JSON looses significant digits in BigInt values
19
19
//benchmark.playJson() shouldBe benchmark.obj
20
-
benchmark.smithy4sJson() shouldBe benchmark.obj
20
+
// FIXME: smithy4sJson parses up to 308 digits only
21
+
//benchmark.smithy4sJson() shouldBe benchmark.obj
21
22
benchmark.uPickle() shouldBe benchmark.obj
22
23
benchmark.zioJson() shouldBe benchmark.obj
23
24
}
@@ -30,7 +31,8 @@ class BigIntReadingSpec extends BenchmarkSpecBase {
30
31
//FIXME: circe-jsoniter parses up to 308 digits only
31
32
//intercept[Throwable](b.circeJsoniter())
32
33
intercept[Throwable](b.jsoniterScala())
33
-
intercept[Throwable](b.smithy4sJson())
34
+
//FIXME: smithy4sJson parses up to 308 digits only
Copy file name to clipboardExpand all lines: jsoniter-scala-benchmark/jvm/src/test/scala-2/com/github/plokhotnyuk/jsoniter_scala/benchmark/BigIntReadingSpec.scala
+4-2
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,8 @@ class BigIntReadingSpec extends BenchmarkSpecBase {
23
23
benchmark.jsoniterScala() shouldBe benchmark.obj
24
24
//FIXME: Play-JSON looses significant digits in BigInt values
25
25
//benchmark.playJson() shouldBe benchmark.obj
26
-
benchmark.smithy4sJson() shouldBe benchmark.obj
26
+
// FIXME: smithy4sJson parses up to 308 digits only
27
+
//benchmark.smithy4sJson() shouldBe benchmark.obj
27
28
benchmark.sprayJson() shouldBe benchmark.obj
28
29
benchmark.uPickle() shouldBe benchmark.obj
29
30
benchmark.weePickle() shouldBe benchmark.obj
@@ -44,7 +45,8 @@ class BigIntReadingSpec extends BenchmarkSpecBase {
44
45
//FIXME: json4s.native throws org.json4s.ParserUtil$ParseException: expected field or array
45
46
//intercept[Throwable](b.json4sNative())
46
47
intercept[Throwable](b.jsoniterScala())
47
-
intercept[Throwable](b.smithy4sJson())
48
+
// FIXME: smithy4sJson parses up to 308 digits only
Copy file name to clipboardExpand all lines: jsoniter-scala-benchmark/jvm/src/test/scala-3/com/github/plokhotnyuk/jsoniter_scala/benchmark/BigIntReadingSpec.scala
+4-2
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,8 @@ class BigIntReadingSpec extends BenchmarkSpecBase {
21
21
benchmark.jsoniterScala() shouldBe benchmark.obj
22
22
//FIXME: Play-JSON looses significant digits in BigInt values
23
23
//benchmark.playJson() shouldBe benchmark.obj
24
-
benchmark.smithy4sJson() shouldBe benchmark.obj
24
+
// FIXME: smithy4sJson parses up to 308 digits only
25
+
//benchmark.smithy4sJson() shouldBe benchmark.obj
25
26
benchmark.sprayJson() shouldBe benchmark.obj
26
27
benchmark.uPickle() shouldBe benchmark.obj
27
28
benchmark.weePickle() shouldBe benchmark.obj
@@ -40,7 +41,8 @@ class BigIntReadingSpec extends BenchmarkSpecBase {
40
41
//FIXME: json4s.native throws org.json4s.ParserUtil$ParseException: expected field or array
41
42
//intercept[Throwable](b.json4sNative())
42
43
intercept[Throwable](b.jsoniterScala())
43
-
intercept[Throwable](b.smithy4sJson())
44
+
// FIXME: smithy4sJson parses up to 308 digits only
Copy file name to clipboardExpand all lines: jsoniter-scala-benchmark/shared/src/main/scala-2/com/github/plokhotnyuk/jsoniter_scala/benchmark/BigIntReading.scala
+2-1
Original file line number
Diff line number
Diff line change
@@ -84,14 +84,15 @@ class BigIntReading extends BigIntBenchmark {
84
84
Json.parse(jsonBytes).as[BigInt]
85
85
}
86
86
*/
87
+
/* FIXME: smithy4sJson parses up to 308 digits only
Copy file name to clipboardExpand all lines: jsoniter-scala-benchmark/shared/src/main/scala-3/com/github/plokhotnyuk/jsoniter_scala/benchmark/BigIntReading.scala
+2-1
Original file line number
Diff line number
Diff line change
@@ -72,14 +72,15 @@ class BigIntReading extends BigIntBenchmark {
72
72
Json.parse(jsonBytes).as[BigInt]
73
73
}
74
74
*/
75
+
/* FIXME: smithy4sJson parses up to 308 digits only
0 commit comments