From 07e1e72aba9e4d7a42f03c08a4964367e94c299e Mon Sep 17 00:00:00 2001 From: David Carlier Date: Fri, 28 Dec 2018 16:36:05 +0000 Subject: [Sanitizer] arc4random unit test missing case. --- compiler-rt/test/sanitizer_common/TestCases/Posix/arc4random.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'compiler-rt') diff --git a/compiler-rt/test/sanitizer_common/TestCases/Posix/arc4random.cc b/compiler-rt/test/sanitizer_common/TestCases/Posix/arc4random.cc index cb7c18f242e..a34930973e6 100644 --- a/compiler-rt/test/sanitizer_common/TestCases/Posix/arc4random.cc +++ b/compiler-rt/test/sanitizer_common/TestCases/Posix/arc4random.cc @@ -50,11 +50,14 @@ void test_arc4random_buf256() { int main(void) { test_seed(); test_arc4random(); + test_arc4random_uniform(); test_arc4random_buf10(); test_arc4random_buf256(); return 0; // CHECK: test_arc4random // CHECK: buf '{{.*}}' + // CHECK: test_arc4random_uniform + // CHECK: buf '{{.*}}' // CHECK: test_arc4random_buf10 // CHECK: buf '{{.*}}' // CHECK: test_arc4random_buf256 -- cgit v1.2.3