Browse Source

Added ‘i128’ feature and unit test invocation

Vincent Esche 7 years ago
parent
commit
6d3b55030f
2 changed files with 5 additions and 0 deletions
  1. 1 0
      Cargo.toml
  2. 4 0
      ci/test_full.sh

+ 1 - 0
Cargo.toml

@@ -16,3 +16,4 @@ readme = "README.md"
 [features]
 [features]
 default = ["std"]
 default = ["std"]
 std = []
 std = []
+i128 = []

+ 4 - 0
ci/test_full.sh

@@ -11,3 +11,7 @@ cargo test --verbose
 # test `no_std`
 # test `no_std`
 cargo build --verbose --no-default-features
 cargo build --verbose --no-default-features
 cargo test --verbose --no-default-features
 cargo test --verbose --no-default-features
+
+# test `i128`
+cargo build --verbose --features=i128
+cargo test --verbose --features=i128