Add filetest for verifying emitted rodata (i.e. test rodata)

This commit is contained in:
Andrew Brown
2019-07-23 11:06:08 -07:00
committed by Dan Gohman
parent 8d812b24cc
commit c3cc225de9
3 changed files with 138 additions and 0 deletions

View File

@@ -48,6 +48,7 @@ mod test_postopt;
mod test_preopt;
mod test_print_cfg;
mod test_regalloc;
mod test_rodata;
mod test_run;
mod test_safepoint;
mod test_shrink;
@@ -119,6 +120,7 @@ fn new_subtest(parsed: &TestCommand) -> subtest::SubtestResult<Box<dyn subtest::
"binemit" => test_binemit::subtest(parsed),
"cat" => test_cat::subtest(parsed),
"compile" => test_compile::subtest(parsed),
"rodata" => test_rodata::subtest(parsed),
"dce" => test_dce::subtest(parsed),
"domtree" => test_domtree::subtest(parsed),
"legalizer" => test_legalizer::subtest(parsed),