kbde-general Mailing List for kbd emulator
Brought to you by:
valery_reznic
You can subscribe to this list here.
| 2004 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
(8) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
(20) |
| 2006 |
Jan
(18) |
Feb
|
Mar
|
Apr
(3) |
May
(1) |
Jun
|
Jul
(3) |
Aug
(1) |
Sep
|
Oct
(2) |
Nov
|
Dec
(12) |
| 2007 |
Jan
(5) |
Feb
(14) |
Mar
(8) |
Apr
(24) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Jeff S. <jef...@gm...> - 2007-04-24 14:27:50
|
2.6.20
On 4/24/07, Valery Reznic <val...@ya...> wrote:
> --- Jeff Sadowski <jef...@gm...> wrote:
> Thanks, Jeff.
> On which kernel did you face this problem ?
>
> Valery
>
>
> > Its been a while since I last used kbde.
> > Recently I wanted to simulate a kernel panic as a
> > joke
> >
> > watch -n 1 "kbde -d 0 --key=CapsLock --key=NumLock;
> > xset led 3;sleep
> > 1;kbde -d 0 --key=CapsLock --key=NumLock; xset -led
> > 3"
> >
> > and realized that it wasn't doing what I thought.
> > Then I remembered I needed to load a kernel module.
> > I downloaded the source code and there was no kernel
> > module in it to build.
> > So I downloaded the cvs
> >
> > cvs
> >
> -d:pserver:ano...@kb...:/cvsroot/kbde
> > login
> > cvs -z3
> >
> -d:pserver:ano...@kb...:/cvsroot/kbde
> > co -P kbde
> >
> > then I went into the driver section and attempted to
> > build the module
> >
> > /root/kbde/kbde-cvs/kbde/kbde-driver/driver/kbde.c:
> > In function 'kbde_write':
> >
> /root/kbde/kbde-cvs/kbde/kbde-driver/driver/kbde.c:96:
> > error: too many
> > arguments to function 'serio_interrupt'
> > make[4]: ***
> > [/root/kbde/kbde-cvs/kbde/kbde-driver/driver/kbde.o]
> > Error 1
> > make[3]: ***
> >
> [_module_/root/kbde/kbde-cvs/kbde/kbde-driver/driver]
> > Error 2
> > make[2]: *** [kbde.ko] Error 2
> > make[1]: *** [all-recursive] Error 2
> > make: *** [all-recursive] Error 2
> >
> > I did a quick google on [error: too many arguments
> > to function
> > 'serio_interrupt']
> > something about the last argument being dropped so I
> > did that in the source code
> >
> > diff -Nu kbde-cvs/kbde/kbde-driver/driver/kbde.c
> > kbde/kbde-driver/driver/kbde.c
> > --- kbde-cvs/kbde/kbde-driver/driver/kbde.c
> > 2006-03-29
> > 02:24:07.000000000 -0700
> > +++ kbde/kbde-driver/driver/kbde.c 2007-04-19
> > 13:21:58.000000000 -0600
> > @@ -93,7 +93,8 @@
> > get_user(scancode, (char*)buf++);
> > //printk("SYMBOL = %x\n", (unsigned
> > int)scancode);
> >
> > - serio_interrupt(kbde_port, scancode,
> > 0, NULL);
> > + /*serio_interrupt(kbde_port,
> > scancode, 0, NULL);*/
> > + serio_interrupt(kbde_port, scancode,
> > 0);
> > }
> > return retval;
> > }
> >
> > I compiled the kernel model and did "depmod -a"
> > and realized I also had to deleted /dev/kbde and
> > recreate it with
> > "mknod /dev/kbde c 11 0"
> >
> > This seemed a little complicated to me. I'm glad I
> > knew what I was
> > doing and had some experience with this in the past.
> >
>
>
> __________________________________________________
> Do You Yahoo!?
> Tired of spam? Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> _______________________________________________
> Kbde-general mailing list
> Kbd...@li...
> https://lists.sourceforge.net/lists/listinfo/kbde-general
>
|
|
From: Valery R. <val...@ya...> - 2007-04-24 09:18:34
|
--- Jeff Sadowski <jef...@gm...> wrote:
Thanks, Jeff.
On which kernel did you face this problem ?
Valery
> Its been a while since I last used kbde.
> Recently I wanted to simulate a kernel panic as a
> joke
>
> watch -n 1 "kbde -d 0 --key=CapsLock --key=NumLock;
> xset led 3;sleep
> 1;kbde -d 0 --key=CapsLock --key=NumLock; xset -led
> 3"
>
> and realized that it wasn't doing what I thought.
> Then I remembered I needed to load a kernel module.
> I downloaded the source code and there was no kernel
> module in it to build.
> So I downloaded the cvs
>
> cvs
>
-d:pserver:ano...@kb...:/cvsroot/kbde
> login
> cvs -z3
>
-d:pserver:ano...@kb...:/cvsroot/kbde
> co -P kbde
>
> then I went into the driver section and attempted to
> build the module
>
> /root/kbde/kbde-cvs/kbde/kbde-driver/driver/kbde.c:
> In function 'kbde_write':
>
/root/kbde/kbde-cvs/kbde/kbde-driver/driver/kbde.c:96:
> error: too many
> arguments to function 'serio_interrupt'
> make[4]: ***
> [/root/kbde/kbde-cvs/kbde/kbde-driver/driver/kbde.o]
> Error 1
> make[3]: ***
>
[_module_/root/kbde/kbde-cvs/kbde/kbde-driver/driver]
> Error 2
> make[2]: *** [kbde.ko] Error 2
> make[1]: *** [all-recursive] Error 2
> make: *** [all-recursive] Error 2
>
> I did a quick google on [error: too many arguments
> to function
> 'serio_interrupt']
> something about the last argument being dropped so I
> did that in the source code
>
> diff -Nu kbde-cvs/kbde/kbde-driver/driver/kbde.c
> kbde/kbde-driver/driver/kbde.c
> --- kbde-cvs/kbde/kbde-driver/driver/kbde.c
> 2006-03-29
> 02:24:07.000000000 -0700
> +++ kbde/kbde-driver/driver/kbde.c 2007-04-19
> 13:21:58.000000000 -0600
> @@ -93,7 +93,8 @@
> get_user(scancode, (char*)buf++);
> //printk("SYMBOL = %x\n", (unsigned
> int)scancode);
>
> - serio_interrupt(kbde_port, scancode,
> 0, NULL);
> + /*serio_interrupt(kbde_port,
> scancode, 0, NULL);*/
> + serio_interrupt(kbde_port, scancode,
> 0);
> }
> return retval;
> }
>
> I compiled the kernel model and did "depmod -a"
> and realized I also had to deleted /dev/kbde and
> recreate it with
> "mknod /dev/kbde c 11 0"
>
> This seemed a little complicated to me. I'm glad I
> knew what I was
> doing and had some experience with this in the past.
>
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
|
|
From: Jeff S. <jef...@gm...> - 2007-04-19 19:59:44
|
Its been a while since I last used kbde.
Recently I wanted to simulate a kernel panic as a joke
watch -n 1 "kbde -d 0 --key=CapsLock --key=NumLock; xset led 3;sleep
1;kbde -d 0 --key=CapsLock --key=NumLock; xset -led 3"
and realized that it wasn't doing what I thought.
Then I remembered I needed to load a kernel module.
I downloaded the source code and there was no kernel module in it to build.
So I downloaded the cvs
cvs -d:pserver:ano...@kb...:/cvsroot/kbde login
cvs -z3 -d:pserver:ano...@kb...:/cvsroot/kbde co -P kbde
then I went into the driver section and attempted to build the module
/root/kbde/kbde-cvs/kbde/kbde-driver/driver/kbde.c: In function 'kbde_write':
/root/kbde/kbde-cvs/kbde/kbde-driver/driver/kbde.c:96: error: too many
arguments to function 'serio_interrupt'
make[4]: *** [/root/kbde/kbde-cvs/kbde/kbde-driver/driver/kbde.o] Error 1
make[3]: *** [_module_/root/kbde/kbde-cvs/kbde/kbde-driver/driver] Error 2
make[2]: *** [kbde.ko] Error 2
make[1]: *** [all-recursive] Error 2
make: *** [all-recursive] Error 2
I did a quick google on [error: too many arguments to function
'serio_interrupt']
something about the last argument being dropped so I did that in the source code
diff -Nu kbde-cvs/kbde/kbde-driver/driver/kbde.c kbde/kbde-driver/driver/kbde.c
--- kbde-cvs/kbde/kbde-driver/driver/kbde.c 2006-03-29
02:24:07.000000000 -0700
+++ kbde/kbde-driver/driver/kbde.c 2007-04-19 13:21:58.000000000 -0600
@@ -93,7 +93,8 @@
get_user(scancode, (char*)buf++);
//printk("SYMBOL = %x\n", (unsigned int)scancode);
- serio_interrupt(kbde_port, scancode, 0, NULL);
+ /*serio_interrupt(kbde_port, scancode, 0, NULL);*/
+ serio_interrupt(kbde_port, scancode, 0);
}
return retval;
}
I compiled the kernel model and did "depmod -a"
and realized I also had to deleted /dev/kbde and recreate it with
"mknod /dev/kbde c 11 0"
This seemed a little complicated to me. I'm glad I knew what I was
doing and had some experience with this in the past.
|
|
From: Valery R. <val...@ya...> - 2006-04-10 14:16:12
|
It's looks interesting, I'll try it. Thank you. Valery --- Damjan <pen...@ma...> wrote: > In the Linux 2.6 kernel the Input Layer system (and > I think it's been fully > backproted to recent 2.4.x kernels) there's support > for user-space input > devices. > > That means that, in the diagram on > http://www.linuxjournal.com/article/6396 , > a user space program can generate input events > (keyboard, mouse, joystick, > touchscreen events... etc). > > Can't user-space input support be used instead of > KBDE-driver... this will > mean that users will not need to compile KBDE-driver > for each kernel release. > > > > -- > damjan > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a > groundbreaking scripting language > that extends applications into web and mobile media. > Attend the live webcast > and join the prime developer group breaking into > this new coding territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > Kbde-general mailing list > Kbd...@li... > https://lists.sourceforge.net/lists/listinfo/kbde-general > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
|
From: Damjan <pen...@ma...> - 2006-04-10 12:59:54
|
In the Linux 2.6 kernel the Input Layer system (and I think it's been fully backproted to recent 2.4.x kernels) there's support for user-space input devices. That means that, in the diagram on http://www.linuxjournal.com/article/6396 , a user space program can generate input events (keyboard, mouse, joystick, touchscreen events... etc). Can't user-space input support be used instead of KBDE-driver... this will mean that users will not need to compile KBDE-driver for each kernel release. -- damjan |
|
From: Valery <val...@ya...> - 2006-04-10 06:26:42
|
Version 1.1.5 with support for FC5 is out. Valery. |
|
From: Valery R. <val...@ya...> - 2006-01-19 08:41:15
|
You are welcome. Valery --- Raj - <rs...@ya...> wrote: > Hi all, > > Thanks for your help. I just didn't install it > properly and after that I removed my special > keyboard entry in X to bring everything back to > defaults and it works great. Looks like I can't > RTFM. (I'm usually better than that, I swear! :-)) > > Regards, > Raj > > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
|
From: Raj - <rs...@ya...> - 2006-01-19 03:50:57
|
Hi all, Thanks for your help. I just didn't install it properly and after that I removed my special keyboard entry in X to bring everything back to defaults and it works great. Looks like I can't RTFM. (I'm usually better than that, I swear! :-)) Regards, Raj |
|
From: Geoffrey <eso...@3t...> - 2006-01-18 18:10:46
|
Valery Reznic wrote: > > --- Geoffrey <eso...@3t...> wrote: > >>Absolutely. I agree completely with the build >>process you have in >>place. I'd rather have it secure from the start, >>and let me shoot my >>own foot. :) >> >>Thanks for a great tool, by the way. > > You are welcome. > We are well on > >>our way to using it >>to test our new gui application. Fire it up in the >>evening and check >>our data in the morning. > > By the way, do you find your missing space ? No, we simply changed the data so that the input data for that field did not have a space. It's a city field. We're in a crunch, so we took the quickest solution to get us back on track. I'll play with it on my own time and post any more info I might get. -- Until later, Geoffrey |
|
From: Valery R. <val...@ya...> - 2006-01-18 18:05:34
|
--- Geoffrey <eso...@3t...> wrote: > Absolutely. I agree completely with the build > process you have in > place. I'd rather have it secure from the start, > and let me shoot my > own foot. :) > > Thanks for a great tool, by the way. You are welcome. We are well on > our way to using it > to test our new gui application. Fire it up in the > evening and check > our data in the morning. By the way, do you find your missing space ? Valery > > > -- > Until later, Geoffrey > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do > you grep through log files > for problems? Stop! Download the new AJAX search > engine that makes > searching your log files as easy as surfing the > web. DOWNLOAD SPLUNK! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 > _______________________________________________ > Kbde-general mailing list > Kbd...@li... > https://lists.sourceforge.net/lists/listinfo/kbde-general > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
|
From: Geoffrey <eso...@3t...> - 2006-01-18 16:06:17
|
Valery Reznic wrote: > > --- Geoffrey <eso...@3t...> wrote: > > >>>>One thing to note is that the make file does not >> >>set >> >>>>the permissions on >>>>the /dev/kbde device for regular users. That's a >>>>good thing from a >>>>security perspective, but a problem if you're not >>>>aware of it. >>> >>>kbde error message is verbose enought, isn't it ? >> >>Sure it is. :) >> >>kbde: can't open '/dev/kbde' - Permission denied >> >>I just kept forgetting to modify the perms.... > > Still it better than > crw-rw-rw- /dev/kbde Absolutely. I agree completely with the build process you have in place. I'd rather have it secure from the start, and let me shoot my own foot. :) Thanks for a great tool, by the way. We are well on our way to using it to test our new gui application. Fire it up in the evening and check our data in the morning. -- Until later, Geoffrey |
|
From: Valery R. <val...@ya...> - 2006-01-18 15:59:15
|
--- Geoffrey <eso...@3t...> wrote: > >>One thing to note is that the make file does not > set > >>the permissions on > >>the /dev/kbde device for regular users. That's a > >>good thing from a > >>security perspective, but a problem if you're not > >>aware of it. > > > > kbde error message is verbose enought, isn't it ? > > Sure it is. :) > > kbde: can't open '/dev/kbde' - Permission denied > > I just kept forgetting to modify the perms.... Still it better than crw-rw-rw- /dev/kbde Valery > > -- > Until later, Geoffrey > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do > you grep through log files > for problems? Stop! Download the new AJAX search > engine that makes > searching your log files as easy as surfing the > web. DOWNLOAD SPLUNK! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 > _______________________________________________ > Kbde-general mailing list > Kbd...@li... > https://lists.sourceforge.net/lists/listinfo/kbde-general > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
|
From: Geoffrey <eso...@3t...> - 2006-01-18 15:44:51
|
Valery Reznic wrote: > > --- Geoffrey <eso...@3t...> wrote: > > >>Valery Reznic wrote: >> >>>--- Raj - <rs...@ya...> wrote: >>> >>> >>> >>>>Hello, >>>> >>>>I don't know if I'm doing something wrong, but >> >>kbde >> >>>>doesn't work for me. >> >>One thing to note is that the make file does not set >>the permissions on >>the /dev/kbde device for regular users. That's a >>good thing from a >>security perspective, but a problem if you're not >>aware of it. > > kbde error message is verbose enought, isn't it ? Sure it is. :) kbde: can't open '/dev/kbde' - Permission denied I just kept forgetting to modify the perms.... -- Until later, Geoffrey |
|
From: Valery R. <val...@ya...> - 2006-01-18 14:59:36
|
--- Geoffrey <eso...@3t...> wrote: > Valery Reznic wrote: > > > > --- Raj - <rs...@ya...> wrote: > > > > > >> Hello, > >> > >> I don't know if I'm doing something wrong, but > kbde > >>doesn't work for me. > > One thing to note is that the make file does not set > the permissions on > the /dev/kbde device for regular users. That's a > good thing from a > security perspective, but a problem if you're not > aware of it. kbde error message is verbose enought, isn't it ? Valery __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
|
From: Geoffrey <eso...@3t...> - 2006-01-18 14:36:27
|
Valery Reznic wrote: > > --- Raj - <rs...@ya...> wrote: > > >> Hello, >> >> I don't know if I'm doing something wrong, but kbde >>doesn't work for me. One thing to note is that the make file does not set the permissions on the /dev/kbde device for regular users. That's a good thing from a security perspective, but a problem if you're not aware of it. -- Until later, Geoffrey |
|
From: Valery R. <val...@ya...> - 2006-01-18 07:51:57
|
--- Raj - <rs...@ya...> wrote: > Hello, > > I don't know if I'm doing something wrong, but kbde > doesn't work for me. Sure, you are :) I'm using gentoo linux with > 2.6.14-r5 kernel. Everything compiles fine. The > module gets loaded: > # lsmod > Module Size Used by > kbde 2252 - > > The device doesn't show until i execute kbde > program once. How you complie and install kbde-driver ? make make install or (as http://kbde.sourceforge.net/kbde/install.driver.html state) make make install mknod ? If you did former, then just remove /dev/kbde, run make mknod and then try again Valery. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
|
From: Raj - <rs...@ya...> - 2006-01-18 02:54:06
|
Hello,
I don't know if I'm doing something wrong, but kbde doesn't work for me. I'm using gentoo linux with 2.6.14-r5 kernel. Everything compiles fine. The module gets loaded:
# lsmod
Module Size Used by
kbde 2252 -
nvidia 4084944 -
snd_ca0106 28676 -
snd_ac97_codec 93628 -
snd_ac97_bus 1672 -
#
The device doesn't show until i execute kbde program once.
# ls /dev/kbde
ls: /dev/kbde: No such file or directory
avatar ~ # kbde
avatar ~ # ls /dev/kbde
/dev/kbde
#
After that it works for one keyboard entry in X. Here is my keyboard entry in xorg.conf
Section "InputDevice"
Identifier "Keyboard1"
Driver "keyboard"
Option "Device" "/dev/kbde"
EndSection
and then, nothing...
any idea? nothing in /var/log/messages. doing in console doesn't work at all that I can tell. I have a USB keyboard that I plug in or unplug, doesn't make a diff.
What am I doing wrong?
Regards
|
|
From: Valery R. <val...@ya...> - 2006-01-13 20:54:50
|
> >>I actually fired up my script and chose an xterm > as > >>the focused window. > >> Sure enough I see NewAlbany is written to the > >>xterm. > >> > >>Simply running: > >> > >>kbde --ascii="new albany" > >> > >>from a shell works, so I think it must be a > >>combination of issues. So i understand it work on the text console and doesn't work under X windows, is it correct ? Valery __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
|
From: Geoffrey <eso...@3t...> - 2006-01-12 20:11:08
|
Valery Reznic wrote: >>>shell it's work - something wrong with your >>>application >> >>I actually fired up my script and chose an xterm as >>the focused window. >> Sure enough I see NewAlbany is written to the >>xterm. >> >>Simply running: >> >>kbde --ascii="new albany" >> >>from a shell works, so I think it must be a >>combination of issues. > > Really strange. Are you able to input space from the > real keyboard in this xterm ? Works fine. > By the way, what kind of keyboard do you have - qwerty > or something else ? qwerty. But I've tried it on both my desktop keyboard and laptop keyboard. > > Valery > > >>-- >>Until later, Geoffrey >> >> >> > > ------------------------------------------------------- > >>This SF.net email is sponsored by: Splunk Inc. Do >>you grep through log files >>for problems? Stop! Download the new AJAX search >>engine that makes >>searching your log files as easy as surfing the >>web. DOWNLOAD SPLUNK! >> > > http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > >>_______________________________________________ >>Kbde-general mailing list >>Kbd...@li... >> > > https://lists.sourceforge.net/lists/listinfo/kbde-general > > > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > _______________________________________________ > Kbde-general mailing list > Kbd...@li... > https://lists.sourceforge.net/lists/listinfo/kbde-general > -- Until later, Geoffrey |
|
From: Valery R. <val...@ya...> - 2006-01-12 19:13:20
|
> > shell it's work - something wrong with your > > application > > I actually fired up my script and chose an xterm as > the focused window. > Sure enough I see NewAlbany is written to the > xterm. > > Simply running: > > kbde --ascii="new albany" > > from a shell works, so I think it must be a > combination of issues. Really strange. Are you able to input space from the real keyboard in this xterm ? By the way, what kind of keyboard do you have - qwerty or something else ? Valery > > -- > Until later, Geoffrey > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do > you grep through log files > for problems? Stop! Download the new AJAX search > engine that makes > searching your log files as easy as surfing the > web. DOWNLOAD SPLUNK! > http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > _______________________________________________ > Kbde-general mailing list > Kbd...@li... > https://lists.sourceforge.net/lists/listinfo/kbde-general > __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
|
From: Geoffrey <eso...@3t...> - 2006-01-12 17:07:02
|
Valery Reznic wrote: > > --- Geoffrey <eso...@3t...> wrote: > > >>I'm having a very unusual problem with kbde. I have >>successfully used >>it to run through a series of screens in a new >>application we are >>building. In the lastest screen I was attempting to >>build test cases >>for, the option: >> >>--ascii="New Albany" >> >>displays NewAlbany in the field. >> >>I've tried --ascii="New" --key=Space >>--ascii="Albany", but still get the >>same output. >> >>The wierd thing is, I've called this window before >>and successfully >>passed the same data to the same field. >> >>I tried passing --ascii="NewXAlbany" and of course, >>that works fine. >> >>Anyone seen anything like this before??? > > Could you try feed this "New Albany" to the shell ? > If problem persist - something wrong with kbde. If for > shell it's work - something wrong with your > application I actually fired up my script and chose an xterm as the focused window. Sure enough I see NewAlbany is written to the xterm. Simply running: kbde --ascii="new albany" from a shell works, so I think it must be a combination of issues. -- Until later, Geoffrey |
|
From: Valery R. <val...@ya...> - 2006-01-12 06:04:11
|
--- Geoffrey <eso...@3t...> wrote: > I'm having a very unusual problem with kbde. I have > successfully used > it to run through a series of screens in a new > application we are > building. In the lastest screen I was attempting to > build test cases > for, the option: > > --ascii="New Albany" > > displays NewAlbany in the field. > > I've tried --ascii="New" --key=Space > --ascii="Albany", but still get the > same output. > > The wierd thing is, I've called this window before > and successfully > passed the same data to the same field. > > I tried passing --ascii="NewXAlbany" and of course, > that works fine. > > Anyone seen anything like this before??? Could you try feed this "New Albany" to the shell ? If problem persist - something wrong with kbde. If for shell it's work - something wrong with your application Valery __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
|
From: Geoffrey <eso...@3t...> - 2006-01-12 02:01:55
|
I'm having a very unusual problem with kbde. I have successfully used it to run through a series of screens in a new application we are building. In the lastest screen I was attempting to build test cases for, the option: --ascii="New Albany" displays NewAlbany in the field. I've tried --ascii="New" --key=Space --ascii="Albany", but still get the same output. The wierd thing is, I've called this window before and successfully passed the same data to the same field. I tried passing --ascii="NewXAlbany" and of course, that works fine. Anyone seen anything like this before??? -- Until later, Geoffrey |
|
From: Valery R. <val...@ya...> - 2005-12-24 17:44:43
|
--- Geoffrey <eso...@3t...> wrote: > Valery Reznic wrote: > >>>Just curious - what your applciation do ? > >> > >>It is used by a trucking logistics application > used > >>to book carriers and > >>customers. > > > > Is it graphical or text-based ? > > I understand how you automate input, > > but (yet :) not how you werify, that output is > > desirable. > > It is graphical, X based. What we want to do is > emulate enough 'users' > so as to put a good load on the hardware to see how > it stands up to it. > > Right now it's not intended to verify proper output. > That still has to > be done manually. Although the input can be via > kbde I see, thanks. Valery > > > > > Valery > > > > > >>-- > >>Until later, Geoffrey > >> > >> > >> > > > > > ------------------------------------------------------- > > > >>This SF.net email is sponsored by: Splunk Inc. Do > >>you grep through log files > >>for problems? Stop! Download the new AJAX search > >>engine that makes > >>searching your log files as easy as surfing the > >>web. DOWNLOAD SPLUNK! > >> > > > > > http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > > > >>_______________________________________________ > >>Kbde-general mailing list > >>Kbd...@li... > >> > > > > > https://lists.sourceforge.net/lists/listinfo/kbde-general > > > > > > > > > > > > > > __________________________________ > > Yahoo! for Good - Make a difference this year. > > http://brand.yahoo.com/cybergivingweek2005/ > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: Splunk Inc. Do > you grep through log files > > for problems? Stop! Download the new AJAX search > engine that makes > > searching your log files as easy as surfing the > web. DOWNLOAD SPLUNK! > > > http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > > _______________________________________________ > > Kbde-general mailing list > > Kbd...@li... > > > https://lists.sourceforge.net/lists/listinfo/kbde-general > > > > > -- > Until later, Geoffrey > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do > you grep through log files > for problems? Stop! Download the new AJAX search > engine that makes > searching your log files as easy as surfing the > web. DOWNLOAD SPLUNK! > http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > _______________________________________________ > Kbde-general mailing list > Kbd...@li... > https://lists.sourceforge.net/lists/listinfo/kbde-general > __________________________________________ Yahoo! DSL Something to write home about. Just $16.99/mo. or less. dsl.yahoo.com |
|
From: Geoffrey <eso...@3t...> - 2005-12-24 01:09:18
|
Valery Reznic wrote: >>>Just curious - what your applciation do ? >> >>It is used by a trucking logistics application used >>to book carriers and >>customers. > > Is it graphical or text-based ? > I understand how you automate input, > but (yet :) not how you werify, that output is > desirable. It is graphical, X based. What we want to do is emulate enough 'users' so as to put a good load on the hardware to see how it stands up to it. Right now it's not intended to verify proper output. That still has to be done manually. Although the input can be via kbde > > Valery > > >>-- >>Until later, Geoffrey >> >> >> > > ------------------------------------------------------- > >>This SF.net email is sponsored by: Splunk Inc. Do >>you grep through log files >>for problems? Stop! Download the new AJAX search >>engine that makes >>searching your log files as easy as surfing the >>web. DOWNLOAD SPLUNK! >> > > http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > >>_______________________________________________ >>Kbde-general mailing list >>Kbd...@li... >> > > https://lists.sourceforge.net/lists/listinfo/kbde-general > > > > > > > __________________________________ > Yahoo! for Good - Make a difference this year. > http://brand.yahoo.com/cybergivingweek2005/ > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click > _______________________________________________ > Kbde-general mailing list > Kbd...@li... > https://lists.sourceforge.net/lists/listinfo/kbde-general > -- Until later, Geoffrey |