Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: src/trusted/validator_ragel/nacl_unsupported_proof.py

Issue 1234393005: A mechanism to identify/forbid/"rewrite" non-temporal instructions (and other) (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Fixing nits Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698