We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b62a2d1 commit 8042fd3Copy full SHA for 8042fd3
TestVectors/dafny/DDBEncryption/src/TestVectors.dfy
@@ -96,11 +96,13 @@ module {:options "-functionSyntax:4"} DdbEncryptionTestVectors {
96
return;
97
}
98
Validate();
99
- StringOrdering();
+ // Because of Dafny-Rust's lack of modules, there is no way to mae an interceptor for the wrapped DB-ESDK client.
100
+ // So we create runtimes/rust/SkipLocal.txt to skip those tests that need the wrapped client.
101
var skipLocal := FileIO.ReadBytesFromFile("SkipLocal.txt");
102
if skipLocal.Success? {
103
104
105
+ StringOrdering();
106
BasicIoTest();
107
RunIoTests();
108
BasicQueryTest();
0 commit comments