mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 20:28:02 +00:00
cleanup
This commit is contained in:
parent
761891a5a1
commit
9840cd53df
1 changed files with 9 additions and 2 deletions
|
@ -428,8 +428,6 @@ pub(crate) fn surgery_pe(executable_path: &Path, metadata_path: &Path, roc_app_b
|
|||
);
|
||||
}
|
||||
|
||||
dbg!(&name);
|
||||
|
||||
match relocation.kind() {
|
||||
object::RelocationKind::Relative => {
|
||||
// we implicitly only do 32-bit relocations
|
||||
|
@ -1934,4 +1932,13 @@ mod test {
|
|||
fn preprocessing_wine() {
|
||||
assert_eq!("Hello there\n", wine_test(preprocessing_help))
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn rust_app_data() {
|
||||
let data = include_bytes!("/tmp/roc/echo.obj");
|
||||
|
||||
AppSections::from_data(data);
|
||||
|
||||
panic!();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue