Fail to watch variable values on DBX 5.7 on AIX
A fully integrated development environment (IDE) for remote cross-pla
Brought to you by:
bviksoe
Attached I send you a printscreen containing the error.
When sending commans to DBX, every one is followed by a ##dbx string, returning a "^systax error".
All value of those variables in watch debug windows are presented as a "^syntax error".
It supposed to send the commands to DBX without the trailing "##dbx".
View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"
Printscreen containing the error
Thanks for the screenshot. It looks like DBX on this platform doesn't treat ## as an inline comment to be ignored.
View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"
I would like to re-open this bug.
Take a look on the first screenshot I sent: when you add a new watch, the a variable valeu on watch window appears with "^sintax error".
To prove you the trailing comment "##dbx" is the problem, I send you a second screenshot showing the commands sent directly to dbx, on command line.
As you can see, the command is executed correctly, but the value of print is trailed by the syntax error.
To correct is simple: don't send any comment to dbx, just commands.
Thanks.
View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"
(dbx) stop at 654
[21] stop at "prmext.pc":654
(dbx) run rms_mc/rms_mc
[21] stopped in main at line 654 in file "prmext.pc" ($t1)
654 if (argc < 2)
(dbx) print argv; ##dbx
(nil)
print argv; ##dbx
^ syntax error
(dbx) print argv
(nil)
(dbx)
View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"