//! Unit tests for the linker parser, split by domain.
modcompiler_driver;moddetection;modgnu_ld;modimplib;modis_link;modmsvc_link;/// Shared helper used by every test module to build a `Vec<String>` from a
/// list of `&str` literals.
fnargs(s:&[&str])->Vec<String>{
s.iter().map(|x|(*x).to_string()).collect()}