allinsns.exp 587 B

123456789101112131415161718192021
  1. # v850 simulator testsuite.
  2. sim_init
  3. # All machines.
  4. # Should add more cpus if the testsuite adds coverage for their insns, but
  5. # at the core level, there's no deviation beyond these two.
  6. set all_machs "v850e3v5 v850e v850"
  7. # gas doesn't support any '=' option for v850.
  8. set cpu_option_sep ""
  9. set cpu_option -m
  10. # The .cgs suffix is for "cgen .s".
  11. foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.cgs]] {
  12. # If we're only testing specific files and this isn't one of them, skip it.
  13. if ![runtest_file_p $runtests $src] {
  14. continue
  15. }
  16. run_sim_test $src $all_machs
  17. }