allinsn.exp 443 B

1234567891011121314151617181920
  1. # eBPF simulator testsuite
  2. sim_init
  3. # all machines
  4. set all_machs "bpf"
  5. global SIMFLAGS_FOR_TARGET
  6. set SIMFLAGS_FOR_TARGET "--memory-size=4Mb"
  7. global LDFLAGS_FOR_TARGET
  8. set LDFLAGS_FOR_TARGET "-Ttext=0x0"
  9. foreach src [lsort [glob -nocomplain $srcdir/$subdir/*.s]] {
  10. # If we're only testing specific files and this isn't one of them, skip it.
  11. if ![runtest_file_p $runtests $src] {
  12. continue
  13. }
  14. run_sim_test $src $all_machs
  15. }