gas/h8300/h8300.exp (do_h8300hn_addressgen): Addition of new test case for
authorNick Clifton <nickc@redhat.com>
Thu, 15 Jul 2004 14:04:31 +0000 (14:04 +0000)
committerNick Clifton <nickc@redhat.com>
Thu, 15 Jul 2004 14:04:31 +0000 (14:04 +0000)
 H8300H normal target to check symbol address generation.
gas/h8300/symaddgen.s: New test.

gas/testsuite/ChangeLog
gas/testsuite/gas/h8300/h8300.exp

index 5e61334b36f98d3ed46e5b723ba1c382e9a12f77..bafa18335eb37a95e6806ee825241bbe70912d97 100644 (file)
@@ -1,3 +1,10 @@
+2004-07-15  Nitin Yewale <nitiny@kpitcummins.com>
+
+       * gas/h8300/h8300.exp (do_h8300hn_addressgen): Addition of
+       new test case for H8300H normal target to check symbol
+       address generation.
+       * gas/h8300/symaddgen.s: New test.
+
 2004-07-13  Nick Clifton  <nickc@redhat.com>
 
        * gas/i386/intel.s: Add test of newly expand arithmetic support
index a13c16aa347837b28bbe7fe8227bddb25db31fe4..10b30f49bf444acd5d3eee7bdca8f0794593c864 100644 (file)
@@ -2114,6 +2114,35 @@ proc do_h8300h_mov32bug {} {
     if [expr $x == 1] then { pass $testname } else { fail $testname }
 }
 
+proc do_h8300hn_addressgen {} {
+    set testname "symaddgen.s: h8300hn symbol address generation"
+    set x 0
+
+    gas_start "symaddgen.s" "-al"
+
+    # Check each instruction bit pattern to verify it got
+    # assembled correctly.
+    while 1 {
+       expect {
+           -re " +\[0-9\]+ .* 01006DF6\[^\n\]*\n"   { set x [expr $x+1] }
+           -re " +\[0-9\]+ .* 0D76\[^\n\]*\n"       { set x [expr $x+1] }
+           -re " +\[0-9\]+ .* 790207D0\[^\n\]*\n"   { set x [expr $x+1] }
+           -re " +\[0-9\]+ .* 6B82F020\[^\n\]*\n"   { set x [expr $x+1] }
+           -re " +\[0-9\]+ .* 79022710\[^\n\]*\n"   { set x [expr $x+1] }
+           -re " +\[0-9\]+ .* 6B820000\[^\n\]*\n"   { set x [expr $x+1] }
+           -re " +\[0-9\]+ .* 01006D76\[^\n\]*\n"   { set x [expr $x+1] }
+           -re " +\[0-9\]+ .* 5470\[^\n\]*\n"       { set x [expr $x+1] }
+            
+           eof                                 { break }
+       }
+    }
+    # This was intended to do any cleanup necessary.  It kinda looks like it
+    # isn't needed, but just in case, please keep it in for now.
+    gas_finish
+    # Did we find what we were looking for?  If not, flunk it.
+    if [expr $x == 8] then { pass $testname } else { fail $testname }
+}
+
 if [istarget h8300*-*-*] then {
     # Test the basic h8300 instruction parser
     do_h8300_add_sub
@@ -2131,6 +2160,7 @@ if [istarget h8300*-*-*] then {
     do_h8300_movw
     do_h8300_pushpop
     do_h8300_rotate_shift
+    do_h8300hn_addressgen
 
     # Now test the h8300h instruction parser
     do_h8300h_add_sub