OLD | NEW |
(Empty) | |
| 1 # Copyright 2015 The Native Client Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 """Proof that tries do not change when introducing a new attribute |
| 6 nacl-unsupported in def files.""" |
| 7 |
| 8 import proof_tools |
| 9 |
| 10 |
| 11 def Validate(trie_diffs, bitness): |
| 12 proof_tools.AssertDiffSetEquals( |
| 13 trie_diffs, |
| 14 expected_adds=set(), |
| 15 expected_removes=set()) |
| 16 |
| 17 if __name__ == '__main__': |
| 18 proof_tools.RunProof(proof_tools.ParseStandardOpts(), Validate) |
OLD | NEW |