in reply to Re^2: unique data in dynamic hash
in thread unique data in dynamic hash

Well...you are using the push function and an array. If you want only one thing to be stored at that location, you'll want something like (untested):
$hoh{$component}{$cmd}{$testcase} = { testsuite_type => $testsuite_type, platform_type => $platform_type, view => $view_type }

thor

Feel the white light, the light within
Be your own disciple, fan the sparks of will
For all of us waiting, your kingdom will come

Replies are listed 'Best First'.
Re^4: unique data in dynamic hash
by rsennat (Beadle) on Nov 16, 2005 at 00:30 UTC
    this worked for me.

    thanks a lot.
    rsennat
      Now that you're over your immediate problem, I suggest reading the intro to data structures. you can access it by typing "perldoc perldsc" at the command prompt. To see what other topics are available, type "perldoc perl". By no means am I discouraging you from asking questions, though. That's how we learn!

      thor

      Feel the white light, the light within
      Be your own disciple, fan the sparks of will
      For all of us waiting, your kingdom will come