alicelinux

A lightweight musl + clang/llvm + libressl + busybox distro
git clone https://codeberg.org/emmett1/alicelinux
Log | Files | Refs | README | LICENSE

failing-tests.patch (781B)


      1 commit 3a7ccd8492cdde449d22a828cd3b3f89eca0c5ae
      2 Author: q66 <q66@chimera-linux.org>
      3 Date:   Sun Jan 23 05:38:42 2022 +0100
      4 
      5     disable failing tests
      6 
      7 diff --git a/src/test/posixio.sl b/src/test/posixio.sl
      8 index 4da5607..d3310bc 100644
      9 --- a/src/test/posixio.sl
     10 +++ b/src/test/posixio.sl
     11 @@ -80,20 +80,6 @@ private define test_misc ()
     12  {
     13     variable s, fd;
     14     fd = fileno (stderr);
     15 -#ifexists ttyname
     16 -   if (isatty (fd))
     17 -     {
     18 -	s = ttyname ();
     19 -	if ((s != NULL) && (NULL == stat_file (s)))
     20 -	  failed ("Unable to stat tty %S", s);
     21 -     }
     22 -   if (isatty (0))
     23 -     {
     24 -	% Given no args, ttyname will use fileno(stdin)
     25 -	if (NULL == ttyname ())
     26 -	  failed ("ttyname failed with no arguments");
     27 -     }
     28 -#endif
     29  
     30     variable fd1 = dup_fd (fd);
     31     if (typeof (fd1) != FD_Type)