legacy: mark port status of remaining tests
This commit is contained in:
@@ -1411,6 +1411,7 @@ mod test {
|
||||
// panic!("debugging");
|
||||
}
|
||||
|
||||
// PORT-STATUS: skip
|
||||
#[test]
|
||||
fn pml_boundary_conditions_x() {
|
||||
let mut pml_state = state_for_pml(Index::new(201, 1, 1));
|
||||
@@ -1418,6 +1419,7 @@ mod test {
|
||||
pml_test_against_baseline(&mut pml_state, &mut baseline_state, Vec3::unit_z());
|
||||
}
|
||||
|
||||
// PORT-STATUS: skip
|
||||
#[test]
|
||||
fn pml_boundary_conditions_y() {
|
||||
let mut pml_state = state_for_pml(Index::new(1, 201, 1));
|
||||
@@ -1425,6 +1427,7 @@ mod test {
|
||||
pml_test_against_baseline(&mut pml_state, &mut baseline_state, Vec3::unit_x());
|
||||
}
|
||||
|
||||
// PORT-STATUS: skip
|
||||
#[test]
|
||||
fn pml_boundary_conditions_z() {
|
||||
let mut pml_state = state_for_pml(Index::new(1, 1, 201));
|
||||
@@ -1432,6 +1435,7 @@ mod test {
|
||||
pml_test_against_baseline(&mut pml_state, &mut baseline_state, Vec3::unit_y());
|
||||
}
|
||||
|
||||
// PORT-STATUS: skip
|
||||
#[test]
|
||||
fn pml_boundary_conditions_plane_xy() {
|
||||
let mut pml_state = state_for_pml(Index::new(201, 201, 1));
|
||||
@@ -1439,6 +1443,7 @@ mod test {
|
||||
pml_test_against_baseline(&mut pml_state, &mut baseline_state, Vec3::unit_z());
|
||||
}
|
||||
|
||||
// PORT-STATUS: skip
|
||||
#[test]
|
||||
fn pml_boundary_conditions_plane_xz() {
|
||||
let mut pml_state = state_for_pml(Index::new(201, 1, 201));
|
||||
@@ -1446,6 +1451,7 @@ mod test {
|
||||
pml_test_against_baseline(&mut pml_state, &mut baseline_state, Vec3::unit_y());
|
||||
}
|
||||
|
||||
// PORT-STATUS: skip
|
||||
#[test]
|
||||
fn pml_boundary_conditions_plane_yz() {
|
||||
let mut pml_state = state_for_pml(Index::new(1, 201, 201));
|
||||
@@ -1492,6 +1498,7 @@ mod test {
|
||||
assert_float_eq!(en, 1.0, abs <= 0.1);
|
||||
}
|
||||
|
||||
// PORT-STATUS: skip
|
||||
#[test]
|
||||
fn pml_boundary_3d_inneffective_monodirectional_linear() {
|
||||
for (size, e) in vec![
|
||||
@@ -1511,6 +1518,7 @@ mod test {
|
||||
}
|
||||
}
|
||||
|
||||
// PORT-STATUS: skip
|
||||
#[test]
|
||||
fn pml_boundary_3d_monodirectional_plane_xy() {
|
||||
//let mut state = state_for_monodirectional_pml(Index::unit()*41);
|
||||
@@ -1518,6 +1526,7 @@ mod test {
|
||||
pml_test(&mut state, Vec3::unit_z(), ..7e-5);
|
||||
}
|
||||
|
||||
// PORT-STATUS: skip
|
||||
#[test]
|
||||
fn pml_boundary_3d_monodirectional_plane_xz() {
|
||||
//let mut state = state_for_monodirectional_pml(Index::unit()*41);
|
||||
@@ -1525,6 +1534,7 @@ mod test {
|
||||
pml_test(&mut state, Vec3::unit_y(), ..7e-5);
|
||||
}
|
||||
|
||||
// PORT-STATUS: skip
|
||||
#[test]
|
||||
fn pml_boundary_3d_monodirectional_plane_yz() {
|
||||
//let mut state = state_for_monodirectional_pml(Index::unit()*41);
|
||||
@@ -1532,24 +1542,28 @@ mod test {
|
||||
pml_test(&mut state, Vec3::unit_x(), ..7e-5);
|
||||
}
|
||||
|
||||
// PORT-STATUS: skip
|
||||
#[test]
|
||||
fn pml_boundary_3d_monodirectional_x() {
|
||||
let mut state = state_for_monodirectional_pml(Index::unit()*41);
|
||||
pml_test(&mut state, Vec3::unit_x(), 1e30..);
|
||||
}
|
||||
|
||||
// PORT-STATUS: skip
|
||||
#[test]
|
||||
fn pml_boundary_3d_monodirectional_y() {
|
||||
let mut state = state_for_monodirectional_pml(Index::unit()*41);
|
||||
pml_test(&mut state, Vec3::unit_y(), 1e30..);
|
||||
}
|
||||
|
||||
// PORT-STATUS: skip
|
||||
#[test]
|
||||
fn pml_boundary_3d_monodirectional_z() {
|
||||
let mut state = state_for_monodirectional_pml(Index::unit()*41);
|
||||
pml_test(&mut state, Vec3::unit_z(), 1e30..);
|
||||
}
|
||||
|
||||
// PORT-STATUS: skip
|
||||
#[test]
|
||||
fn pml_boundary_3d_multidirectional() {
|
||||
for dir in vec![Vec3::unit_x(), Vec3::unit_y(), Vec3::unit_z()] {
|
||||
@@ -1559,6 +1573,7 @@ mod test {
|
||||
}
|
||||
}
|
||||
|
||||
// PORT-STATUS: skip
|
||||
#[test]
|
||||
fn pml_boundary_3d_multidirectional_non_axis_aligned() {
|
||||
for dir in vec![
|
||||
@@ -1576,6 +1591,7 @@ mod test {
|
||||
}
|
||||
}
|
||||
|
||||
// PORT-STATUS: skip
|
||||
#[test]
|
||||
fn pml_boundary_3d_multidirectional_off_center() {
|
||||
for dir in vec![Vec3::unit_x(), Vec3::unit_y(), Vec3::unit_z()] {
|
||||
@@ -1624,6 +1640,7 @@ mod test {
|
||||
// }
|
||||
// }
|
||||
|
||||
// PORT-STATUS: skip
|
||||
#[test]
|
||||
fn pml_boundary_3d_chaotic_field() {
|
||||
let excitation = |idx: Index| {
|
||||
|
Reference in New Issue
Block a user