about summary refs log tree commit diff
path: root/tests/run-make/emit-to-stdout
AgeCommit message (Collapse)AuthorLines
2023-11-24Bless run-make testsNilstrieb-5/+5
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
2023-06-06fixJing Peng-1/+1
- remove useless commands from test Makefile - do not unnecessarily remove metadata temporary files because they'll be managed by MaybeTempDir - remove unused FailedRemove error introduced by this PR
2023-06-06Write to stdout if `-` is given as output fileJing Peng-0/+72
If `-o -` or `--emit KIND=-` is provided, output will be written to stdout instead. Binary output (`obj`, `llvm-bc`, `link` and `metadata`) being written this way will result in an error unless stdout is not a tty. Multiple output types going to stdout will trigger an error too, as they will all be mixded together.