about summary refs log tree commit diff
path: root/tests/run-make/emit-to-stdout
AgeCommit message (Collapse)AuthorLines
2025-06-12ignore `run-make` tests that need `std` on `no_std` targetsFolkert de Vries-0/+1
In particular, anything that includes `none` in the target tripple, and `nvptx64-nvidia-cuda`
2024-10-07Migrate `emit-to-stdout` to new run-makeclubby789-51/+73
Co-authored-by: Oneirical <manchot@videotron.ca> Co-authored-by: Chris Denton <chris@chrisdenton.dev>
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.