Skip to content

Commit

Permalink
commented out some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDan64 committed Jul 13, 2024
1 parent 4761d2d commit 00e81f9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/all/test_values.rs
Original file line number Diff line number Diff line change
Expand Up @@ -893,16 +893,16 @@ fn test_value_from_string() {
//assert_eq!(f64_val.print_to_string().to_string(), "double 0x7FF0000000000000");
}

#[test]
fn test_value_copies() {
let context = Context::create();
let i8_type = context.i8_type();
// #[test]
// fn test_value_copies() {
// let context = Context::create();
// let i8_type = context.i8_type();

let i8_value = i8_type.const_int(12, false);
let i8_value_copy = i8_value;
// let i8_value = i8_type.const_int(12, false);
// let i8_value_copy = i8_value;

assert_eq!(i8_value, i8_value_copy);
}
// assert_eq!(i8_value, i8_value_copy);
// }

// #[test]
// fn test_global_byte_array() {
Expand Down

0 comments on commit 00e81f9

Please sign in to comment.