Un-ignore some tests

This commit is contained in:
Brian Anderson 2012-08-20 16:20:32 -07:00
parent 452522ddcd
commit 5f3c2215ae
3 changed files with 4 additions and 6 deletions

View file

@ -108,7 +108,6 @@ fn box_to_display_items(list: dl::display_list, box: @Box, origin: Point2D<au>)
fn should_convert_text_boxes_to_solid_color_background_items() { fn should_convert_text_boxes_to_solid_color_background_items() {
#[test]; #[test];
#[ignore(reason = "crashy")];
let s = Scope(); let s = Scope();
let n = s.new_node(Text(~"firecracker")); let n = s.new_node(Text(~"firecracker"));
@ -129,7 +128,6 @@ fn should_convert_text_boxes_to_solid_color_background_items() {
fn should_convert_text_boxes_to_text_items() { fn should_convert_text_boxes_to_text_items() {
#[test]; #[test];
#[ignore(reason = "crashy")];
let s = Scope(); let s = Scope();
let n = s.new_node(Text(~"firecracker")); let n = s.new_node(Text(~"firecracker"));
@ -149,7 +147,7 @@ fn should_convert_text_boxes_to_text_items() {
fn should_calculate_the_bounds_of_the_text_box_background_color() { fn should_calculate_the_bounds_of_the_text_box_background_color() {
#[test]; #[test];
#[ignore]; #[ignore(cfg(target_os = "macos"))];
let s = Scope(); let s = Scope();
let n = s.new_node(Text(~"firecracker")); let n = s.new_node(Text(~"firecracker"));
@ -171,7 +169,7 @@ fn should_calculate_the_bounds_of_the_text_box_background_color() {
fn should_calculate_the_bounds_of_the_text_items() { fn should_calculate_the_bounds_of_the_text_items() {
#[test]; #[test];
#[ignore]; #[ignore(cfg(target_os = "macos"))];
let s = Scope(); let s = Scope();
let n = s.new_node(Text(~"firecracker")); let n = s.new_node(Text(~"firecracker"));

View file

@ -39,7 +39,7 @@ impl @Box : TextLayout {
fn should_calculate_the_size_of_the_text_box() { fn should_calculate_the_size_of_the_text_box() {
#[test]; #[test];
#[ignore]; #[ignore(cfg(target_os = "macos"))];
import dom::rcu::{Scope}; import dom::rcu::{Scope};
import dom::base::{Text, NodeScope}; import dom::base::{Text, NodeScope};

View file

@ -30,7 +30,7 @@ struct TextRun {
fn should_calculate_the_total_size() { fn should_calculate_the_total_size() {
#[test]; #[test];
#[ignore(reason = "random failures")]; #[ignore(cfg(target_os = "macos"))];
let flib = FontLibrary(); let flib = FontLibrary();
let font = flib.get_test_font(); let font = flib.get_test_font();