Browse Source

test: skip arc4random on glibc

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Bernhard Reutner-Fischer 9 years ago
parent
commit
78e6494c2c
1 changed files with 3 additions and 0 deletions
  1. 3 0
      test/stdlib/Makefile.in

+ 3 - 0
test/stdlib/Makefile.in

@@ -7,9 +7,12 @@ DODIFF_teston_exit := 1
 DODIFF_teststrtol  := 1
 DODIFF_teststrtol  := 1
 
 
 TESTS_DISABLED :=
 TESTS_DISABLED :=
+GLIBC_TESTS_DISABLED :=
 ifeq ($(UCLIBC_HAS_PTY),)
 ifeq ($(UCLIBC_HAS_PTY),)
 TESTS_DISABLED += ptytest
 TESTS_DISABLED += ptytest
 endif
 endif
 ifeq ($(UCLIBC_HAS_ARC4RANDOM),)
 ifeq ($(UCLIBC_HAS_ARC4RANDOM),)
 TESTS_DISABLED += testarc4random
 TESTS_DISABLED += testarc4random
+else
+GLIBC_TESTS_DISABLED += testarc4random
 endif
 endif