aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJack O'Connor <[email protected]>2020-09-29 10:59:56 -0400
committerJack O'Connor <[email protected]>2020-09-29 10:59:56 -0400
commit5bdfd07666d29dd939e2a507209f21d0e4bbc80d (patch)
tree0fd4832786a31e08f651d90bdc2671ef137f8290
parentae3e8e6b3a5ae3190ca5d62820789b17886a0038 (diff)
update the blake3_c_rust_bindings test cases also
-rw-r--r--c/blake3_c_rust_bindings/src/test.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/c/blake3_c_rust_bindings/src/test.rs b/c/blake3_c_rust_bindings/src/test.rs
index f824ceb..ff4b35d 100644
--- a/c/blake3_c_rust_bindings/src/test.rs
+++ b/c/blake3_c_rust_bindings/src/test.rs
@@ -19,6 +19,19 @@ const KEYED_HASH: u8 = 1 << 4;
pub const TEST_CASES: &[usize] = &[
0,
1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ BLOCK_LEN - 1,
+ BLOCK_LEN,
+ BLOCK_LEN + 1,
+ 2 * BLOCK_LEN - 1,
+ 2 * BLOCK_LEN,
+ 2 * BLOCK_LEN + 1,
CHUNK_LEN - 1,
CHUNK_LEN,
CHUNK_LEN + 1,