| 109 | info.packageVariant = "host"; |
| 110 | info.source = "test"; |
| 111 | info.sourceHash = ""; |
| 112 | info.validation = "passed"; |
| 113 | const StringView phases[] = {"writeReceipt"}; |
| 114 | info.phases = phases; |
| 115 | return Tools::writePackageReceipt(package, info, exports); |
| 116 | } |
| 117 | |
| 118 | #if !SC_PLATFORM_WINDOWS |
| 119 | static Result writeFakeQEMURunner(FileSystem& fs, StringView path, StringView name) |
| 120 | { |
| 121 | String script = StringEncoding::Utf8; |
| 122 | auto builder = StringBuilder::create(script); |
| 123 | SC_TRY(builder.append("#!/bin/sh\n")); |
no test coverage detected