diff options
author | Andy Ayers <andya@microsoft.com> | 2016-06-10 11:40:36 -0700 |
---|---|---|
committer | Andy Ayers <andya@microsoft.com> | 2016-06-10 11:40:36 -0700 |
commit | 6d198f8926b6c5ee3fd9678394626ad3296840c3 (patch) | |
tree | 50584fe16b271cb872acf63c57c75cfe286b00d8 | |
parent | 1e1ad9253e8bedd910f8affa03916a2066cc4395 (diff) | |
download | coreclr-6d198f8926b6c5ee3fd9678394626ad3296840c3.tar.gz coreclr-6d198f8926b6c5ee3fd9678394626ad3296840c3.tar.bz2 coreclr-6d198f8926b6c5ee3fd9678394626ad3296840c3.zip |
Modify Crypto benchmark so it uses a fixed random seed
Fix seed so benchmark behavior doesn't vary randomly from run to run.
-rw-r--r-- | tests/src/JIT/Performance/CodeQuality/V8/Crypto/Crypto.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/JIT/Performance/CodeQuality/V8/Crypto/Crypto.cs b/tests/src/JIT/Performance/CodeQuality/V8/Crypto/Crypto.cs index 1ce60050a4..23eab8db5b 100644 --- a/tests/src/JIT/Performance/CodeQuality/V8/Crypto/Crypto.cs +++ b/tests/src/JIT/Performance/CodeQuality/V8/Crypto/Crypto.cs @@ -34,7 +34,7 @@ // Comment this out to use a fixed random number seed. -#define USE_RANDOM_SEED +// #define USE_RANDOM_SEED // The code has been adapted for use as a benchmark by Microsoft. |