https://gcc.gnu.org/bugzilla/show_bug.cgi?id=55212
--- Comment #463 from Oleg Endo <olegendo at gcc dot gnu.org> --- (In reply to John Paul Adrian Glaubitz from comment #462) > (In reply to Oleg Endo from comment #461) > > Yes, of course. I'm a little overloaded atm. I'll try to find some > > peaceful moments to update/rebase the branch and commit the existing test > > cases upstream. > > I have applied all the patches from your tree on Github now which add the > tests, but they aren't run. I have tried to run them with > > $ make -j80 check-gcc RUNTESTFLAGS="sh.exp" > > but none of the pr55212 tests were run. Do I need to adjust anything? I don't remember in which place I've put the testcases in the testsuite. RUNTESTFLAGS="sh.exp" acts as a filter. To run the full testsuite (incl. GCC, target, libstdc++ etc) on sh-sim: make -k check RUNTESTFLAGS="--target_board=sh-sim\{-m2/-ml,-m2/-mb,-m2a/-mb,-m4/-ml,-m4/-mb,-m4a/-ml,-m4a/-mb}" So for a native sh4-linux config, it's should be enough to specify "make -k check" To run one particular test, locate the folder where it's in and the corresponding .exp file, for example: make check RUNTESTFLAGS="compile.exp=pr57108.c"