" /> Status for Andrew DeFaria: June 24, 2007 - June 30, 2007 Archives

« June 17, 2007 - June 23, 2007 | Main | July 1, 2007 - July 7, 2007 »

June 29, 2007

Help desk tickets

Worked on the following WORs/Helpdesk Ticket

  • RANCQ00011450 Alter makefiles in DCHSR project to remove checkouts during builds (Done)
  • RANCQ00011131 Migrate makefiles in RAX_LMC project to remove checkouts during builds - 1.7c -> 2 (Done)
  • RANCQ00011428 Remove unnecessary vob elements for RA (Done)
  • RANCQ00011351 Removing unnecesary vob elements for RA (Done)
  • RANCQ00011589 Can not deliver WOR # 9358 (Waiting for response from submitter)
  • RANCQ00011566 Had failure during rebase - unable to continue with deliver (Waiting for response from submitter)
  • RANCQ00011330 ROAM PM Testing files missing in GD vobs (Labeled Ericsson vob and requested a re-replication from Julie. Almost done.)
  • RANCQ00010740 TOOL FAILURE : "You must deliver your changes before you complete this WOR!!!" (Was able to deliver myself. Waiting for response from requester)
  • RANCQ00010651 Cannot checkout files in RoseRT (Showed submitter that this WOR was rejected and thus you cannot check out. Waiting for response from requester.<)

June 25, 2007

csh vs. tcsh status

Jim, it is apparently a csh'ism that $? is not available but $status is:

Randws035:csh
[randws035/vobs/rnc/rrt/rlib] ls /non/existant
/non/existant: No such file or directory
[randws035/vobs/rnc/rrt/rlib] echo $status
2
[randws035/vobs/rnc/rrt/rlib] ls /non/existant
/non/existant: No such file or directory
[randws035/vobs/rnc/rrt/rlib] echo $?
Variable syntax

Whereas in tcsh:

Randws035:tcsh
[randws035/vobs/rnc/rrt/rlib] ls /non/existant
/non/existant: No such file or directory
[randws035/vobs/rnc/rrt/rlib] echo $status
2
[randws035/vobs/rnc/rrt/rlib] ls /non/existant
/non/existant: No such file or directory
[randws035/vobs/rnc/rrt/rlib] echo $?
2