summary refs log tree commit diff
path: root/src/test/run-make/crate-name-priority
AgeCommit message (Collapse)AuthorLines
2015-03-15Strip all leading/trailing newlinesTamir Duberstein-1/+0
2014-07-18rustc: Mix extra-filename in temp outputsAlex Crichton-3/+1
When invoking the compiler in parallel, the intermediate output of the object files and bytecode can stomp over one another if two crates with the same name are being compiled. The output file is already being disambiguated with `-C extra-filename`, so this commit alters the naming of the temporary files to also mix in the extra filename to ensure that file names don't clash.
2014-07-08rustc: Fix naming output files with --crate-nameAlex Crichton-0/+38
The output file was only being renamed based off #[crate_name], not #[crate_id] or --crate-name. Both of these behaviors have been restored now.