()
| 1640 | #[test] |
| 1641 | fn kernel_ld_links_stdlib_and_runs() { |
| 1642 | let client_s = b"\ |
| 1643 | .globl _start |
| 1644 | .text |
| 1645 | _start: |
| 1646 | la a0, msg |
| 1647 | call puts |
| 1648 | li a0, 33 |
| 1649 | call putc |
| 1650 | li a0, 10 |
| 1651 | call putc |
nothing calls this directly
no test coverage detected