All of lore.kernel.org
 help / color / mirror / Atom feed
* ptem01 LTP failure in ttydev-0909
@ 2008-09-11 20:11 sukadev-r/Jw6+rmf7HQT0dZR+AlfA
       [not found] ` <20080911201159.GA17071-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: sukadev-r/Jw6+rmf7HQT0dZR+AlfA @ 2008-09-11 20:11 UTC (permalink / raw)
  To: Alan Cox; +Cc: Containers, hpa-YMNOUZJC4hwAvxtiuMwx3w

Alan,

LTP testcases/kernel/pty/ptem01 is failing on ttydev-0909. The test
passed on ttydev-0828.

The test changes the window size using the slave-fd and expects that
it won't affect the window-size on master-fd. With this change, we
return the slave's window size and test fails.

I suspect that it is due to following change in ttydev.  

Is the test bogus now ?

Suka


commit 4f0fa9c9e6557442b583a687066bebd607246220
Author: Alan Cox <alan-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
Date:   Mon Sep 8 13:49:19 2008 -0700

    tty: Termios locking - sort out real_tty confusions and lock reads

    This moves us towards sanity and should mean our termios locking is now
    complete and comprehensive.

diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c
index 69b1766..7eabfbb 100644
--- a/drivers/char/tty_io.c
+++ b/drivers/char/tty_io.c
@@ -2595,7 +2595,7 @@ long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
        case TIOCSTI:
                return tiocsti(tty, p);
        case TIOCGWINSZ:
-               return tiocgwinsz(tty, p);
+               return tiocgwinsz(real_tty, p);

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: ptem01 LTP failure in ttydev-0909
       [not found] ` <20080911201159.GA17071-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
@ 2008-09-16 14:48   ` Alan Cox
       [not found]     ` <20080916154848.49337bf0-qBU/x9rampVanCEyBjwyrvXRex20P6io@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: Alan Cox @ 2008-09-16 14:48 UTC (permalink / raw)
  To: sukadev-r/Jw6+rmf7HQT0dZR+AlfA; +Cc: Containers, hpa-YMNOUZJC4hwAvxtiuMwx3w

> The test changes the window size using the slave-fd and expects that
> it won't affect the window-size on master-fd. With this change, we
> return the slave's window size and test fails.

I've no idea why anyone would have thought the existing behaviour was
correct. The pty/tty pair code tries to share the size and other
information at all times and the old test was I think verifying a bug
existed.

Unless anyone can cite anything to show otherwise anyway ?

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: ptem01 LTP failure in ttydev-0909
       [not found]     ` <20080916154848.49337bf0-qBU/x9rampVanCEyBjwyrvXRex20P6io@public.gmane.org>
@ 2008-09-19  4:14       ` sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8
       [not found]         ` <20080919041408.GA31412-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8 @ 2008-09-19  4:14 UTC (permalink / raw)
  To: subrata-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8
  Cc: Containers, ltp-list-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
	sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8, Alan Cox,
	hpa-YMNOUZJC4hwAvxtiuMwx3w


Alan Cox [alan-qBU/x9rampVanCEyBjwyrvXRex20P6io@public.gmane.org] wrote:
| > The test changes the window size using the slave-fd and expects that
| > it won't affect the window-size on master-fd. With this change, we
| > return the slave's window size and test fails.
| 
| I've no idea why anyone would have thought the existing behaviour was
| correct. The pty/tty pair code tries to share the size and other
| information at all times and the old test was I think verifying a bug
| existed.
| 
| Unless anyone can cite anything to show otherwise anyway ?

Subrata 

We are referring to the last window size check in test2() of
testcases/kernel/pty/ptem01.c. This check will cause the test
to fail when some of the planned ttydev changes are merged.

Would you happen to know if the check is really required or if
it should be dropped ?

Suka

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: ptem01 LTP failure in ttydev-0909
       [not found]         ` <20080919041408.GA31412-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
@ 2008-09-24 12:36           ` Subrata Modak
       [not found]             ` <1222259777.5395.7.camel-NRFfyExJdYpgXGGE5LP+UZlqa2bBAFbm0E9HWUfgJXw@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: Subrata Modak @ 2008-09-24 12:36 UTC (permalink / raw)
  To: sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8
  Cc: Containers, ltp-list-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
	Serge Hallyn, Alan Cox, hpa-YMNOUZJC4hwAvxtiuMwx3w

Hi Sukadev,

On Thu, 2008-09-18 at 21:14 -0700, sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org wrote:
> Alan Cox [alan-qBU/x9rampVanCEyBjwyrvXRex20P6io@public.gmane.org] wrote:
> | > The test changes the window size using the slave-fd and expects that
> | > it won't affect the window-size on master-fd. With this change, we
> | > return the slave's window size and test fails.
> | 
> | I've no idea why anyone would have thought the existing behaviour was
> | correct. The pty/tty pair code tries to share the size and other
> | information at all times and the old test was I think verifying a bug
> | existed.
> | 
> | Unless anyone can cite anything to show otherwise anyway ?
> 
> Subrata 
> 
> We are referring to the last window size check in test2() of
> testcases/kernel/pty/ptem01.c. This check will cause the test
> to fail when some of the planned ttydev changes are merged.
> 
> Would you happen to know if the check is really required or if
> it should be dropped ?

 I would want the test to remain there, but introduce some checkings
before running the test. As test2() is valid under present
circumstances, we should retain it as people will keep using LTP on
lower kernels.

Having said that, i would like to come with a solution where test2() of
testcases/kernel/pty/ptem01.c is not run after the planned ttydev
changes are merged. Something compile/run time checking to either not to
build that part of code and run it. Can we do something like that by
checking some glibc/kernel exported definitions ?

Regards--
Subrata

> 
> Suka


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: ptem01 LTP failure in ttydev-0909
       [not found]             ` <1222259777.5395.7.camel-NRFfyExJdYpgXGGE5LP+UZlqa2bBAFbm0E9HWUfgJXw@public.gmane.org>
@ 2008-11-01 20:33               ` sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8
       [not found]                 ` <20081101203303.GG24472-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 6+ messages in thread
From: sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8 @ 2008-11-01 20:33 UTC (permalink / raw)
  To: Subrata Modak
  Cc: Containers, ltp-list-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
	Serge Hallyn, Alan Cox, hpa-YMNOUZJC4hwAvxtiuMwx3w


Sorry, this was buried in my inbox...

Subrata Modak [subrata-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org] wrote:
| Hi Sukadev,
| 
| On Thu, 2008-09-18 at 21:14 -0700, sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org wrote:
| > Alan Cox [alan-qBU/x9rampVanCEyBjwyrvXRex20P6io@public.gmane.org] wrote:
| > | > The test changes the window size using the slave-fd and expects that
| > | > it won't affect the window-size on master-fd. With this change, we
| > | > return the slave's window size and test fails.
| > | 
| > | I've no idea why anyone would have thought the existing behaviour was
| > | correct. The pty/tty pair code tries to share the size and other
| > | information at all times and the old test was I think verifying a bug
| > | existed.
| > | 
| > | Unless anyone can cite anything to show otherwise anyway ?
| > 
| > Subrata 
| > 
| > We are referring to the last window size check in test2() of
| > testcases/kernel/pty/ptem01.c. This check will cause the test
| > to fail when some of the planned ttydev changes are merged.
| > 
| > Would you happen to know if the check is really required or if
| > it should be dropped ?
| 
|  I would want the test to remain there, but introduce some checkings
| before running the test. As test2() is valid under present
| circumstances, we should retain it as people will keep using LTP on
| lower kernels.

Just to be clear, the entire test2() is not broken. Only the last part
(see patch below) Other parts of test2() should be fine even with
new changes.

| 
| Having said that, i would like to come with a solution where test2() of
| testcases/kernel/pty/ptem01.c is not run after the planned ttydev
| changes are merged. Something compile/run time checking to either not to
| build that part of code and run it. Can we do something like that by
| checking some glibc/kernel exported definitions ?

Other than the kernel version when the changes are merged, I am not sure
there is a way. Besides, it is not clear which assertion that part of
test2() is testing and if it is even needed for older kernels.

Here is the part of test2() I am referring to:

---
 testcases/kernel/pty/ptem01.c |   12 ------------
 1 file changed, 12 deletions(-)

Index: ltp-full-20071031/testcases/kernel/pty/ptem01.c
===================================================================
--- ltp-full-20071031.orig/testcases/kernel/pty/ptem01.c        2008-11-01 13:30:42.977954127 -0700
+++ ltp-full-20071031/testcases/kernel/pty/ptem01.c     2008-11-01 13:31:41.439427078 -0700
@@ -238,18 +238,6 @@ test2(void)
                tst_exit();
        }

-       if (ioctl(masterfd, TIOCGWINSZ, &wsz) != 0) {
-               tst_resm(TFAIL,"TIOCGWINSZ");
-               tst_exit();
-       }
-
-       if (wsz.ws_row == wsz2.ws_row || wsz.ws_col == wsz2.ws_col ||
-           wsz.ws_xpixel == wsz2.ws_xpixel ||
-           wsz.ws_ypixel == wsz2.ws_ypixel) {
-               tst_resm(TFAIL, "unexpected window size returned");
-               tst_exit();
-       }
-
        if (close(slavefd) != 0) {
                tst_resm(TBROK,"close");
                tst_exit();

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: ptem01 LTP failure in ttydev-0909
       [not found]                 ` <20081101203303.GG24472-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
@ 2008-11-03  7:26                   ` Subrata Modak
  0 siblings, 0 replies; 6+ messages in thread
From: Subrata Modak @ 2008-11-03  7:26 UTC (permalink / raw)
  To: sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8
  Cc: Containers, ltp-list-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
	Serge Hallyn, Alan Cox, hpa-YMNOUZJC4hwAvxtiuMwx3w

Thanks Suka,

Post Patching:

# ./testcases/bin/ptem01
ptem01      1  PASS  :  test1
ptem01      2  PASS  :  test2
ptem01      3  PASS  :  test3
ptem01      4  PASS  :  test4
ptem01      5  PASS  :  test5
ptem01      6  PASS  :  test6


Regards--
Subrata

On Sat, 2008-11-01 at 13:33 -0700, sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org wrote:
> Sorry, this was buried in my inbox...
> 
> Subrata Modak [subrata-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org] wrote:
> | Hi Sukadev,
> | 
> | On Thu, 2008-09-18 at 21:14 -0700, sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org wrote:
> | > Alan Cox [alan-qBU/x9rampVanCEyBjwyrvXRex20P6io@public.gmane.org] wrote:
> | > | > The test changes the window size using the slave-fd and expects that
> | > | > it won't affect the window-size on master-fd. With this change, we
> | > | > return the slave's window size and test fails.
> | > | 
> | > | I've no idea why anyone would have thought the existing behaviour was
> | > | correct. The pty/tty pair code tries to share the size and other
> | > | information at all times and the old test was I think verifying a bug
> | > | existed.
> | > | 
> | > | Unless anyone can cite anything to show otherwise anyway ?
> | > 
> | > Subrata 
> | > 
> | > We are referring to the last window size check in test2() of
> | > testcases/kernel/pty/ptem01.c. This check will cause the test
> | > to fail when some of the planned ttydev changes are merged.
> | > 
> | > Would you happen to know if the check is really required or if
> | > it should be dropped ?
> | 
> |  I would want the test to remain there, but introduce some checkings
> | before running the test. As test2() is valid under present
> | circumstances, we should retain it as people will keep using LTP on
> | lower kernels.
> 
> Just to be clear, the entire test2() is not broken. Only the last part
> (see patch below) Other parts of test2() should be fine even with
> new changes.
> 
> | 
> | Having said that, i would like to come with a solution where test2() of
> | testcases/kernel/pty/ptem01.c is not run after the planned ttydev
> | changes are merged. Something compile/run time checking to either not to
> | build that part of code and run it. Can we do something like that by
> | checking some glibc/kernel exported definitions ?
> 
> Other than the kernel version when the changes are merged, I am not sure
> there is a way. Besides, it is not clear which assertion that part of
> test2() is testing and if it is even needed for older kernels.
> 
> Here is the part of test2() I am referring to:
> 
> ---
>  testcases/kernel/pty/ptem01.c |   12 ------------
>  1 file changed, 12 deletions(-)
> 
> Index: ltp-full-20071031/testcases/kernel/pty/ptem01.c
> ===================================================================
> --- ltp-full-20071031.orig/testcases/kernel/pty/ptem01.c        2008-11-01 13:30:42.977954127 -0700
> +++ ltp-full-20071031/testcases/kernel/pty/ptem01.c     2008-11-01 13:31:41.439427078 -0700
> @@ -238,18 +238,6 @@ test2(void)
>                 tst_exit();
>         }
> 
> -       if (ioctl(masterfd, TIOCGWINSZ, &wsz) != 0) {
> -               tst_resm(TFAIL,"TIOCGWINSZ");
> -               tst_exit();
> -       }
> -
> -       if (wsz.ws_row == wsz2.ws_row || wsz.ws_col == wsz2.ws_col ||
> -           wsz.ws_xpixel == wsz2.ws_xpixel ||
> -           wsz.ws_ypixel == wsz2.ws_ypixel) {
> -               tst_resm(TFAIL, "unexpected window size returned");
> -               tst_exit();
> -       }
> -
>         if (close(slavefd) != 0) {
>                 tst_resm(TBROK,"close");
>                 tst_exit();


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-11-03  7:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-11 20:11 ptem01 LTP failure in ttydev-0909 sukadev-r/Jw6+rmf7HQT0dZR+AlfA
     [not found] ` <20080911201159.GA17071-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-09-16 14:48   ` Alan Cox
     [not found]     ` <20080916154848.49337bf0-qBU/x9rampVanCEyBjwyrvXRex20P6io@public.gmane.org>
2008-09-19  4:14       ` sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8
     [not found]         ` <20080919041408.GA31412-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-09-24 12:36           ` Subrata Modak
     [not found]             ` <1222259777.5395.7.camel-NRFfyExJdYpgXGGE5LP+UZlqa2bBAFbm0E9HWUfgJXw@public.gmane.org>
2008-11-01 20:33               ` sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8
     [not found]                 ` <20081101203303.GG24472-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-11-03  7:26                   ` Subrata Modak

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.