summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/c_runtime
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2015-12-12 15:33:19 -0800
committerJan Kotas <jkotas@microsoft.com>2015-12-12 15:33:19 -0800
commit2154d80e0ecd7f5cfef83c4fd016dd0e97a177e7 (patch)
treed4d115e936efc3add54b78f1a82be36c5d8339b7 /src/pal/tests/palsuite/c_runtime
parentade2cc7a51171c0ba264ecd72c7351d8bbda457f (diff)
downloadcoreclr-2154d80e0ecd7f5cfef83c4fd016dd0e97a177e7.tar.gz
coreclr-2154d80e0ecd7f5cfef83c4fd016dd0e97a177e7.tar.bz2
coreclr-2154d80e0ecd7f5cfef83c4fd016dd0e97a177e7.zip
Delete bad PAL test case
Diffstat (limited to 'src/pal/tests/palsuite/c_runtime')
-rw-r--r--src/pal/tests/palsuite/c_runtime/rand_srand/test1/test1.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/pal/tests/palsuite/c_runtime/rand_srand/test1/test1.c b/src/pal/tests/palsuite/c_runtime/rand_srand/test1/test1.c
index 5476545b42..fa4850976f 100644
--- a/src/pal/tests/palsuite/c_runtime/rand_srand/test1/test1.c
+++ b/src/pal/tests/palsuite/c_runtime/rand_srand/test1/test1.c
@@ -64,11 +64,6 @@ int __cdecl main(int argc, char **argv)
for(i = 0; i < 10; i++)
{
TempRandNumber=rand();
- if(RandNumber[i]==TempRandNumber)
- {
- Fail("ERROR: rand should return the different value when srand "
- "is initialized with different value");
- }
if (TempRandNumber < 0 || TempRandNumber > RAND_MAX)
{
Fail("2) ERROR: random generated an invalid value: %d", TempRandNumber);