We're making good progress through the make check errors. This one I'm not sure about so if anyone has some ideas please shoot.
make[2]: Entering directory `/home/bryce/src/Inkscape/inkscape/src' Running 75 tests........................................................... In AttributesTest::testAttributes: ./attributes-test.h:489: Warning: "flood-color" ./attributes-test.h:489: Warning: "flood-opacity" ./attributes-test.h:493: Error: Assertion failed: !found ............... Failed 1 of 75 tests Success rate: 98% FAIL: test-all
Does anyone know what is going wrong here?
Bryce
On Sat, Jan 13, 2007 at 12:55:00AM -0800, Bryce Harrington wrote:
We're making good progress through the make check errors. This one I'm not sure about so if anyone has some ideas please shoot.
make[2]: Entering directory `/home/bryce/src/Inkscape/inkscape/src' Running 75 tests........................................................... In AttributesTest::testAttributes: ./attributes-test.h:489: Warning: "flood-color" ./attributes-test.h:489: Warning: "flood-opacity" ./attributes-test.h:493: Error: Assertion failed: !found ............... Failed 1 of 75 tests Success rate: 98% FAIL: test-all
There is also style-test:
Testing style... sp_style_new, sp_style_write_string...Assertion `streq(str0_all, str0_all_exp)' failed sp_style_merge_from_style_string(whitespace, ifset...OK sp_style_merge_from_style_string(whitespace, always...Assertion `streq(str0_all, str0_all_exp)' failed sp_style_merge_from_style_string("fill:", ifset)...OK sp_style_merge_from_style_string("font-family:", always)...Assertion `streq(str0_all, str0_all_exp)' failed sp_style_merge_from_style_string("fill: ", ifset)...OK sp_style_merge_from_style_string("font-family: ", always)...Assertion `streq(str0_all, str0_all_exp)' failed sp_style_merge_from_style_string(":none", ifset)...OK invalid color setting: #4321...Assertion `streq(str0_set, "color:#123")' failed invalid color setting: currentColor...Assertion `streq(str0_set, "color:#123")' failed invalid color setting: #87654321...Assertion `streq(str0_set, "color:#123")' failed invalid color setting: #42...Assertion `streq(str0_set, "color:#123")' failed invalid color setting: aquam...Assertion `streq(str0_set, "color:#123")' failed sp_style_merge_from_style_string(default): ifset...Assertion `streq(ifset_str, str0_all_exp)' failed sp_style_merge_from_style_string(default): always...Assertion `streq(ifset_str, str0_all_exp)' failed sp_style_merge_from_style_string...Assertion `streq(str0_all, str0_all_exp)' failed SP_SCALE24_MUL...OK sp_style_merge_from_dying_parent: opacity...OK style: FAILED (6/18 tests passed)
This seems to have something to do with color values (#000000) getting used where the test was expecting a name (black). I marked it EXFAIL in the Makefile for now....
On 1/13/07, Kees Cook <kees@...62...> wrote:
This seems to have something to do with color values (#000000) getting used where the test was expecting a name (black). I marked it EXFAIL in the Makefile for now....
These tests need to be disabled. I knowingly removed the "optimizing" of #000000 into "black" on save because it was causing problems (though it's still available as a preference, off by default).
participants (3)
-
Bryce Harrington
-
bulia byak
-
Kees Cook