diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2014-12-12 16:06:17 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2014-12-12 16:06:17 +0100 |
commit | d6da534cbf05dc4d09221881afd49b275ca7cd29 (patch) | |
tree | b62f8585ed5234c645a2068ae86db34d69ee0748 /test | |
parent | 926a698c5ac69b599014ce147cc814343f0aaa4f (diff) |
test: disable ptytest unless HAS_PTY
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/stdlib/Makefile.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/stdlib/Makefile.in b/test/stdlib/Makefile.in index 0bb06975e..53e5a7280 100644 --- a/test/stdlib/Makefile.in +++ b/test/stdlib/Makefile.in @@ -5,3 +5,9 @@ DODIFF_qsort := 1 DODIFF_testatexit := 1 DODIFF_teston_exit := 1 DODIFF_teststrtol := 1 + +TESTS_DISABLED := +ifeq ($(UCLIBC_HAS_PTY),) +TESTS_DISABLED += ptytest +endif + |