# HG changeset patch # User James Chang # Date 1438100410 25200 # Node ID c0b8c110b0a802d614f31a55b0ec1e09b9cfd290 # Parent 9e076feb8c0b4e84a36695aecd5e450c6c7b8701 21363926 simplejson test results differ for "gmake test" and "gmake system-test" diff -r 9e076feb8c0b -r c0b8c110b0a8 components/python/simplejson/Makefile --- a/components/python/simplejson/Makefile Wed Jul 15 06:04:45 2015 -0700 +++ b/components/python/simplejson/Makefile Tue Jul 28 09:20:10 2015 -0700 @@ -43,20 +43,25 @@ ASLR_MODE = $(ASLR_NOT_APPLICABLE) -COMPONENT_TEST_DIR= $(COMPONENT_SRC) -COMPONENT_TEST_ARGS= ./setup.py test +COMPONENT_TEST_DIR= $(COMPONENT_SRC)/$(COMPONENT_NAME)/tests +COMPONENT_TEST_CMD= /usr/bin/py.test-$(PYTHON_VERSION) +COMPONENT_TEST_ARGS= -v # The additional simplejson specific set of transforms to be applied # to the test results to try to normalize them. COMPONENT_TEST_TRANSFORMS += \ - '-e "s|\(^$(CC)\).*|\\$$(CC)|" ' \ - '-e "s|\(^cc -G \).*|\1|" ' \ - '-e "s|\(creating build/temp.solaris\).*|\1|" ' \ - '-e "s|\(Ran 132 tests in\).*|\1|" ' + '-e "/^_.*/d" ' \ + '-e "/^=.*/d" ' \ + '-e "/SOURCE_DIR.*/d" ' \ + '-e "/^ *$$/d" ' \ + '-e "/^plugins.*/d" ' \ + '-e "/pep8/d" ' \ + '-e "/pyflakes/d" ' -COMPONENT_SYSTEM_TEST_DIR = $(COMPONENT_SRC) +COMPONENT_SYSTEM_TEST_DIR= $(COMPONENT_SRC)/$(COMPONENT_NAME)/tests +COMPONENT_SYSTEM_TEST_CMD= /usr/bin/py.test-$(PYTHON_VERSION) +COMPONENT_SYSTEM_TEST_ARGS= -v COMPONENT_SYSTEM_TEST_ENV = -COMPONENT_SYSTEM_TEST_ARGS = ./setup.py test build: $(BUILD_32_and_64) diff -r 9e076feb8c0b -r c0b8c110b0a8 components/python/simplejson/test/results-2.6-32.master --- a/components/python/simplejson/test/results-2.6-32.master Wed Jul 15 06:04:45 2015 -0700 +++ b/components/python/simplejson/test/results-2.6-32.master Tue Jul 28 09:20:10 2015 -0700 @@ -1,145 +1,121 @@ -running test -running egg_info -writing simplejson.egg-info/PKG-INFO -writing top-level names to simplejson.egg-info/top_level.txt -writing dependency_links to simplejson.egg-info/dependency_links.txt -reading manifest file 'simplejson.egg-info/SOURCES.txt' -writing manifest file 'simplejson.egg-info/SOURCES.txt' -running build_ext -test_circular_composite (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_default (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_dict (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_list (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_off_default (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_decimal (simplejson.tests.test_decode.TestDecode) ... ok -test_decoder_optimizations (simplejson.tests.test_decode.TestDecode) ... ok -test_empty_objects (simplejson.tests.test_decode.TestDecode) ... ok -test_empty_strings (simplejson.tests.test_decode.TestDecode) ... ok -test_float (simplejson.tests.test_decode.TestDecode) ... ok -test_keys_reuse_str (simplejson.tests.test_decode.TestDecode) ... ok -test_keys_reuse_unicode (simplejson.tests.test_decode.TestDecode) ... ok -test_object_pairs_hook (simplejson.tests.test_decode.TestDecode) ... ok -test_raw_decode (simplejson.tests.test_decode.TestDecode) ... ok -test_default (simplejson.tests.test_default.TestDefault) ... ok -test_dump (simplejson.tests.test_dump.TestDump) ... ok -test_dumps (simplejson.tests.test_dump.TestDump) ... ok -test_encode_truefalse (simplejson.tests.test_dump.TestDump) ... ok -test_ordered_dict (simplejson.tests.test_dump.TestDump) ... ok -test_c_encode_basestring_ascii (simplejson.tests.test_encode_basestring_ascii.TestEncodeBaseStringAscii) ... ok -test_py_encode_basestring_ascii (simplejson.tests.test_encode_basestring_ascii.TestEncodeBaseStringAscii) ... ok -test_basic_encode (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_basic_roundtrip (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_prevent_script_breakout (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_decode_error (simplejson.tests.test_errors.TestErrors) ... ok -test_string_keys_error (simplejson.tests.test_errors.TestErrors) ... ok -test_array_decoder_issue46 (simplejson.tests.test_fail.TestFail) ... ok -test_failures (simplejson.tests.test_fail.TestFail) ... ok -test_floats (simplejson.tests.test_float.TestFloat) ... ok -test_ints (simplejson.tests.test_float.TestFloat) ... ok -test_indent (simplejson.tests.test_indent.TestIndent) ... ok -test_indent0 (simplejson.tests.test_indent.TestIndent) ... ok -test_parse (simplejson.tests.test_pass1.TestPass1) ... ok -test_parse (simplejson.tests.test_pass2.TestPass2) ... ok -test_parse (simplejson.tests.test_pass3.TestPass3) ... ok -test_defaultrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_dictrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_listrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_c_scanstring (simplejson.tests.test_scanstring.TestScanString) ... ok -test_issue3623 (simplejson.tests.test_scanstring.TestScanString) ... ok -test_overflow (simplejson.tests.test_scanstring.TestScanString) ... ok -test_py_scanstring (simplejson.tests.test_scanstring.TestScanString) ... ok -test_separators (simplejson.tests.test_separators.TestSeparators) ... ok -test_make_encoder (simplejson.tests.test_speedups.TestDecode) ... ok -test_make_scanner (simplejson.tests.test_speedups.TestDecode) ... ok -test_big_unicode_decode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_big_unicode_encode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_default_encoding (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding1 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding2 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding3 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding4 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding5 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding6 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_ensure_ascii_false_bytestring_encoding (simplejson.tests.test_unicode.TestUnicode) ... ok -test_ensure_ascii_false_returns_unicode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_object_pairs_hook_with_unicode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_unicode_decode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_unicode_preservation (simplejson.tests.test_unicode.TestUnicode) ... ok -test_decimal_decode (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_defaults (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_encode (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_roundtrip (simplejson.tests.test_decimal.TestDecimal) ... ok -Doctest: simplejson ... ok -Doctest: simplejson.encoder.JSONEncoder.encode ... ok -Doctest: index.rst ... ok -test_circular_composite (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_default (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_dict (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_list (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_off_default (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_decimal (simplejson.tests.test_decode.TestDecode) ... ok -test_decoder_optimizations (simplejson.tests.test_decode.TestDecode) ... ok -test_empty_objects (simplejson.tests.test_decode.TestDecode) ... ok -test_empty_strings (simplejson.tests.test_decode.TestDecode) ... ok -test_float (simplejson.tests.test_decode.TestDecode) ... ok -test_keys_reuse_str (simplejson.tests.test_decode.TestDecode) ... ok -test_keys_reuse_unicode (simplejson.tests.test_decode.TestDecode) ... ok -test_object_pairs_hook (simplejson.tests.test_decode.TestDecode) ... ok -test_raw_decode (simplejson.tests.test_decode.TestDecode) ... ok -test_default (simplejson.tests.test_default.TestDefault) ... ok -test_dump (simplejson.tests.test_dump.TestDump) ... ok -test_dumps (simplejson.tests.test_dump.TestDump) ... ok -test_encode_truefalse (simplejson.tests.test_dump.TestDump) ... ok -test_ordered_dict (simplejson.tests.test_dump.TestDump) ... ok -test_c_encode_basestring_ascii (simplejson.tests.test_encode_basestring_ascii.TestEncodeBaseStringAscii) ... ok -test_py_encode_basestring_ascii (simplejson.tests.test_encode_basestring_ascii.TestEncodeBaseStringAscii) ... ok -test_basic_encode (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_basic_roundtrip (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_prevent_script_breakout (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_decode_error (simplejson.tests.test_errors.TestErrors) ... ok -test_string_keys_error (simplejson.tests.test_errors.TestErrors) ... ok -test_array_decoder_issue46 (simplejson.tests.test_fail.TestFail) ... ok -test_failures (simplejson.tests.test_fail.TestFail) ... ok -test_floats (simplejson.tests.test_float.TestFloat) ... ok -test_ints (simplejson.tests.test_float.TestFloat) ... ok -test_indent (simplejson.tests.test_indent.TestIndent) ... ok -test_indent0 (simplejson.tests.test_indent.TestIndent) ... ok -test_parse (simplejson.tests.test_pass1.TestPass1) ... ok -test_parse (simplejson.tests.test_pass2.TestPass2) ... ok -test_parse (simplejson.tests.test_pass3.TestPass3) ... ok -test_defaultrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_dictrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_listrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_c_scanstring (simplejson.tests.test_scanstring.TestScanString) ... ok -test_issue3623 (simplejson.tests.test_scanstring.TestScanString) ... ok -test_overflow (simplejson.tests.test_scanstring.TestScanString) ... ok -test_py_scanstring (simplejson.tests.test_scanstring.TestScanString) ... ok -test_separators (simplejson.tests.test_separators.TestSeparators) ... ok -test_make_encoder (simplejson.tests.test_speedups.TestDecode) ... ok -test_make_scanner (simplejson.tests.test_speedups.TestDecode) ... ok -test_big_unicode_decode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_big_unicode_encode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_default_encoding (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding1 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding2 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding3 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding4 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding5 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding6 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_ensure_ascii_false_bytestring_encoding (simplejson.tests.test_unicode.TestUnicode) ... ok -test_ensure_ascii_false_returns_unicode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_object_pairs_hook_with_unicode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_unicode_decode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_unicode_preservation (simplejson.tests.test_unicode.TestUnicode) ... ok -test_decimal_decode (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_defaults (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_encode (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_roundtrip (simplejson.tests.test_decimal.TestDecimal) ... ok -Doctest: simplejson ... ok -Doctest: simplejson.encoder.JSONEncoder.encode ... ok -Doctest: index.rst ... ok - ----------------------------------------------------------------------- -Ran 132 tests in - -OK +platform sunos5 -- Python 2.6.8 -- py-1.4.26 -- pytest-2.6.4 -- /usr/bin/python2.6 +collecting ... collected 173 items +test_bigint_as_string.py::TestBigintAsString::test_dict_keys PASSED +test_bigint_as_string.py::TestBigintAsString::test_dicts PASSED +test_bigint_as_string.py::TestBigintAsString::test_ints PASSED +test_bigint_as_string.py::TestBigintAsString::test_lists PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_dict_keys PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_dicts PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_ints PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_ints_outside_range_fails PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_invalid_counts PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_lists PASSED +test_check_circular.py::TestCheckCircular::test_circular_composite PASSED +test_check_circular.py::TestCheckCircular::test_circular_default PASSED +test_check_circular.py::TestCheckCircular::test_circular_dict PASSED +test_check_circular.py::TestCheckCircular::test_circular_list PASSED +test_check_circular.py::TestCheckCircular::test_circular_off_default PASSED +test_decimal.py::TestDecimal::test_decimal_decode PASSED +test_decimal.py::TestDecimal::test_decimal_defaults PASSED +test_decimal.py::TestDecimal::test_decimal_encode PASSED +test_decimal.py::TestDecimal::test_decimal_reload PASSED +test_decimal.py::TestDecimal::test_decimal_roundtrip PASSED +test_decimal.py::TestDecimal::test_stringify_key PASSED +test_decode.py::TestDecode::test_bounds_checking PASSED +test_decode.py::TestDecode::test_decimal PASSED +test_decode.py::TestDecode::test_decoder_optimizations PASSED +test_decode.py::TestDecode::test_empty_objects PASSED +test_decode.py::TestDecode::test_empty_strings PASSED +test_decode.py::TestDecode::test_float PASSED +test_decode.py::TestDecode::test_keys_reuse_str PASSED +test_decode.py::TestDecode::test_keys_reuse_unicode PASSED +test_decode.py::TestDecode::test_object_pairs_hook PASSED +test_decode.py::TestDecode::test_raw_decode PASSED +test_default.py::TestDefault::test_default PASSED +test_dump.py::TestDump::test_accumulator PASSED +test_dump.py::TestDump::test_constants PASSED +test_dump.py::TestDump::test_dump PASSED +test_dump.py::TestDump::test_dumps PASSED +test_dump.py::TestDump::test_encode_truefalse PASSED +test_dump.py::TestDump::test_indent_unknown_type_acceptance PASSED +test_dump.py::TestDump::test_ordered_dict PASSED +test_dump.py::TestDump::test_sort_keys PASSED +test_dump.py::TestDump::test_stringify_key PASSED +test_encode_basestring_ascii.py::TestEncodeBaseStringAscii::test_c_encode_basestring_ascii PASSED +test_encode_basestring_ascii.py::TestEncodeBaseStringAscii::test_py_encode_basestring_ascii PASSED +test_encode_basestring_ascii.py::TestEncodeBaseStringAscii::test_sorted_dict PASSED +test_encode_for_html.py::TestEncodeForHTML::test_basic_encode PASSED +test_encode_for_html.py::TestEncodeForHTML::test_basic_roundtrip PASSED +test_encode_for_html.py::TestEncodeForHTML::test_prevent_script_breakout PASSED +test_errors.py::TestErrors::test_decode_error PASSED +test_errors.py::TestErrors::test_error_is_pickable PASSED +test_errors.py::TestErrors::test_scan_error PASSED +test_errors.py::TestErrors::test_string_keys_error PASSED +test_fail.py::TestFail::test_array_decoder_issue46 PASSED +test_fail.py::TestFail::test_failures PASSED +test_fail.py::TestFail::test_truncated_input PASSED +test_float.py::TestFloat::test_degenerates_allow PASSED +test_float.py::TestFloat::test_degenerates_deny PASSED +test_float.py::TestFloat::test_degenerates_ignore PASSED +test_float.py::TestFloat::test_floats PASSED +test_float.py::TestFloat::test_ints PASSED +test_for_json.py::TestForJson::test_for_json_encodes_dict_subclass PASSED +test_for_json.py::TestForJson::test_for_json_encodes_list PASSED +test_for_json.py::TestForJson::test_for_json_encodes_list_subclass PASSED +test_for_json.py::TestForJson::test_for_json_encodes_list_within_object PASSED +test_for_json.py::TestForJson::test_for_json_encodes_object_nested_in_dict PASSED +test_for_json.py::TestForJson::test_for_json_encodes_object_nested_in_list_within_dict PASSED +test_for_json.py::TestForJson::test_for_json_encodes_object_nested_within_object PASSED +test_for_json.py::TestForJson::test_for_json_encodes_stand_alone_object PASSED +test_for_json.py::TestForJson::test_for_json_ignored_if_not_true_with_dict_subclass PASSED +test_for_json.py::TestForJson::test_for_json_ignored_if_not_true_with_list_subclass PASSED +test_for_json.py::TestForJson::test_raises_typeerror_if_for_json_not_true_with_object PASSED +test_indent.py::TestIndent::test_indent PASSED +test_indent.py::TestIndent::test_indent0 PASSED +test_indent.py::TestIndent::test_separators PASSED +test_item_sort_key.py::TestItemSortKey::test_case PASSED +test_item_sort_key.py::TestItemSortKey::test_simple_first PASSED +test_namedtuple.py::TestNamedTuple::test_asdict_not_callable_dump PASSED +test_namedtuple.py::TestNamedTuple::test_asdict_not_callable_dumps PASSED +test_namedtuple.py::TestNamedTuple::test_namedtuple_dump PASSED +test_namedtuple.py::TestNamedTuple::test_namedtuple_dump_false PASSED +test_namedtuple.py::TestNamedTuple::test_namedtuple_dumps PASSED +test_namedtuple.py::TestNamedTuple::test_namedtuple_dumps_false PASSED +test_pass1.py::TestPass1::test_parse PASSED +test_pass2.py::TestPass2::test_parse PASSED +test_pass3.py::TestPass3::test_parse PASSED +test_recursion.py::TestRecursion::test_defaultrecursion PASSED +test_recursion.py::TestRecursion::test_dictrecursion PASSED +test_recursion.py::TestRecursion::test_listrecursion PASSED +test_scanstring.py::TestScanString::test_c_scanstring PASSED +test_scanstring.py::TestScanString::test_issue3623 PASSED +test_scanstring.py::TestScanString::test_overflow PASSED +test_scanstring.py::TestScanString::test_py_scanstring PASSED +test_scanstring.py::TestScanString::test_surrogates PASSED +test_separators.py::TestSeparators::test_separators PASSED +test_speedups.py::TestDecode::test_make_encoder PASSED +test_speedups.py::TestDecode::test_make_scanner PASSED +test_tool.py::TestTool::test_infile_outfile PASSED +test_tool.py::TestTool::test_infile_stdout PASSED +test_tool.py::TestTool::test_stdin_stdout PASSED +test_tuple.py::TestTuples::test_tuple_array_dump PASSED +test_tuple.py::TestTuples::test_tuple_array_dumps PASSED +test_tuple.py::TestNamedTuple::test_namedtuple_dump PASSED +test_unicode.py::TestUnicode::test_big_unicode_decode PASSED +test_unicode.py::TestUnicode::test_big_unicode_encode PASSED +test_unicode.py::TestUnicode::test_default_encoding PASSED +test_unicode.py::TestUnicode::test_encoding1 PASSED +test_unicode.py::TestUnicode::test_encoding2 PASSED +test_unicode.py::TestUnicode::test_encoding3 PASSED +test_unicode.py::TestUnicode::test_encoding4 PASSED +test_unicode.py::TestUnicode::test_encoding5 PASSED +test_unicode.py::TestUnicode::test_encoding6 PASSED +test_unicode.py::TestUnicode::test_ensure_ascii_false_bytestring_encoding PASSED +test_unicode.py::TestUnicode::test_ensure_ascii_false_returns_unicode PASSED +test_unicode.py::TestUnicode::test_ensure_ascii_linebreak_encoding PASSED +test_unicode.py::TestUnicode::test_ensure_ascii_still_works PASSED +test_unicode.py::TestUnicode::test_invalid_escape_sequences PASSED +test_unicode.py::TestUnicode::test_object_pairs_hook_with_unicode PASSED +test_unicode.py::TestUnicode::test_strip_bom PASSED +test_unicode.py::TestUnicode::test_unicode_decode PASSED +test_unicode.py::TestUnicode::test_unicode_preservation PASSED diff -r 9e076feb8c0b -r c0b8c110b0a8 components/python/simplejson/test/results-2.6-64.master --- a/components/python/simplejson/test/results-2.6-64.master Wed Jul 15 06:04:45 2015 -0700 +++ b/components/python/simplejson/test/results-2.6-64.master Tue Jul 28 09:20:10 2015 -0700 @@ -1,145 +1,121 @@ -running test -running egg_info -writing simplejson.egg-info/PKG-INFO -writing top-level names to simplejson.egg-info/top_level.txt -writing dependency_links to simplejson.egg-info/dependency_links.txt -reading manifest file 'simplejson.egg-info/SOURCES.txt' -writing manifest file 'simplejson.egg-info/SOURCES.txt' -running build_ext -test_circular_composite (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_default (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_dict (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_list (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_off_default (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_decimal (simplejson.tests.test_decode.TestDecode) ... ok -test_decoder_optimizations (simplejson.tests.test_decode.TestDecode) ... ok -test_empty_objects (simplejson.tests.test_decode.TestDecode) ... ok -test_empty_strings (simplejson.tests.test_decode.TestDecode) ... ok -test_float (simplejson.tests.test_decode.TestDecode) ... ok -test_keys_reuse_str (simplejson.tests.test_decode.TestDecode) ... ok -test_keys_reuse_unicode (simplejson.tests.test_decode.TestDecode) ... ok -test_object_pairs_hook (simplejson.tests.test_decode.TestDecode) ... ok -test_raw_decode (simplejson.tests.test_decode.TestDecode) ... ok -test_default (simplejson.tests.test_default.TestDefault) ... ok -test_dump (simplejson.tests.test_dump.TestDump) ... ok -test_dumps (simplejson.tests.test_dump.TestDump) ... ok -test_encode_truefalse (simplejson.tests.test_dump.TestDump) ... ok -test_ordered_dict (simplejson.tests.test_dump.TestDump) ... ok -test_c_encode_basestring_ascii (simplejson.tests.test_encode_basestring_ascii.TestEncodeBaseStringAscii) ... ok -test_py_encode_basestring_ascii (simplejson.tests.test_encode_basestring_ascii.TestEncodeBaseStringAscii) ... ok -test_basic_encode (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_basic_roundtrip (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_prevent_script_breakout (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_decode_error (simplejson.tests.test_errors.TestErrors) ... ok -test_string_keys_error (simplejson.tests.test_errors.TestErrors) ... ok -test_array_decoder_issue46 (simplejson.tests.test_fail.TestFail) ... ok -test_failures (simplejson.tests.test_fail.TestFail) ... ok -test_floats (simplejson.tests.test_float.TestFloat) ... ok -test_ints (simplejson.tests.test_float.TestFloat) ... ok -test_indent (simplejson.tests.test_indent.TestIndent) ... ok -test_indent0 (simplejson.tests.test_indent.TestIndent) ... ok -test_parse (simplejson.tests.test_pass1.TestPass1) ... ok -test_parse (simplejson.tests.test_pass2.TestPass2) ... ok -test_parse (simplejson.tests.test_pass3.TestPass3) ... ok -test_defaultrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_dictrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_listrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_c_scanstring (simplejson.tests.test_scanstring.TestScanString) ... ok -test_issue3623 (simplejson.tests.test_scanstring.TestScanString) ... ok -test_overflow (simplejson.tests.test_scanstring.TestScanString) ... ok -test_py_scanstring (simplejson.tests.test_scanstring.TestScanString) ... ok -test_separators (simplejson.tests.test_separators.TestSeparators) ... ok -test_make_encoder (simplejson.tests.test_speedups.TestDecode) ... ok -test_make_scanner (simplejson.tests.test_speedups.TestDecode) ... ok -test_big_unicode_decode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_big_unicode_encode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_default_encoding (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding1 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding2 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding3 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding4 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding5 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding6 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_ensure_ascii_false_bytestring_encoding (simplejson.tests.test_unicode.TestUnicode) ... ok -test_ensure_ascii_false_returns_unicode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_object_pairs_hook_with_unicode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_unicode_decode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_unicode_preservation (simplejson.tests.test_unicode.TestUnicode) ... ok -test_decimal_decode (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_defaults (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_encode (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_roundtrip (simplejson.tests.test_decimal.TestDecimal) ... ok -Doctest: simplejson ... ok -Doctest: simplejson.encoder.JSONEncoder.encode ... ok -Doctest: index.rst ... ok -test_circular_composite (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_default (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_dict (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_list (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_off_default (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_decimal (simplejson.tests.test_decode.TestDecode) ... ok -test_decoder_optimizations (simplejson.tests.test_decode.TestDecode) ... ok -test_empty_objects (simplejson.tests.test_decode.TestDecode) ... ok -test_empty_strings (simplejson.tests.test_decode.TestDecode) ... ok -test_float (simplejson.tests.test_decode.TestDecode) ... ok -test_keys_reuse_str (simplejson.tests.test_decode.TestDecode) ... ok -test_keys_reuse_unicode (simplejson.tests.test_decode.TestDecode) ... ok -test_object_pairs_hook (simplejson.tests.test_decode.TestDecode) ... ok -test_raw_decode (simplejson.tests.test_decode.TestDecode) ... ok -test_default (simplejson.tests.test_default.TestDefault) ... ok -test_dump (simplejson.tests.test_dump.TestDump) ... ok -test_dumps (simplejson.tests.test_dump.TestDump) ... ok -test_encode_truefalse (simplejson.tests.test_dump.TestDump) ... ok -test_ordered_dict (simplejson.tests.test_dump.TestDump) ... ok -test_c_encode_basestring_ascii (simplejson.tests.test_encode_basestring_ascii.TestEncodeBaseStringAscii) ... ok -test_py_encode_basestring_ascii (simplejson.tests.test_encode_basestring_ascii.TestEncodeBaseStringAscii) ... ok -test_basic_encode (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_basic_roundtrip (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_prevent_script_breakout (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_decode_error (simplejson.tests.test_errors.TestErrors) ... ok -test_string_keys_error (simplejson.tests.test_errors.TestErrors) ... ok -test_array_decoder_issue46 (simplejson.tests.test_fail.TestFail) ... ok -test_failures (simplejson.tests.test_fail.TestFail) ... ok -test_floats (simplejson.tests.test_float.TestFloat) ... ok -test_ints (simplejson.tests.test_float.TestFloat) ... ok -test_indent (simplejson.tests.test_indent.TestIndent) ... ok -test_indent0 (simplejson.tests.test_indent.TestIndent) ... ok -test_parse (simplejson.tests.test_pass1.TestPass1) ... ok -test_parse (simplejson.tests.test_pass2.TestPass2) ... ok -test_parse (simplejson.tests.test_pass3.TestPass3) ... ok -test_defaultrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_dictrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_listrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_c_scanstring (simplejson.tests.test_scanstring.TestScanString) ... ok -test_issue3623 (simplejson.tests.test_scanstring.TestScanString) ... ok -test_overflow (simplejson.tests.test_scanstring.TestScanString) ... ok -test_py_scanstring (simplejson.tests.test_scanstring.TestScanString) ... ok -test_separators (simplejson.tests.test_separators.TestSeparators) ... ok -test_make_encoder (simplejson.tests.test_speedups.TestDecode) ... ok -test_make_scanner (simplejson.tests.test_speedups.TestDecode) ... ok -test_big_unicode_decode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_big_unicode_encode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_default_encoding (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding1 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding2 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding3 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding4 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding5 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding6 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_ensure_ascii_false_bytestring_encoding (simplejson.tests.test_unicode.TestUnicode) ... ok -test_ensure_ascii_false_returns_unicode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_object_pairs_hook_with_unicode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_unicode_decode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_unicode_preservation (simplejson.tests.test_unicode.TestUnicode) ... ok -test_decimal_decode (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_defaults (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_encode (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_roundtrip (simplejson.tests.test_decimal.TestDecimal) ... ok -Doctest: simplejson ... ok -Doctest: simplejson.encoder.JSONEncoder.encode ... ok -Doctest: index.rst ... ok - ----------------------------------------------------------------------- -Ran 132 tests in - -OK +platform sunos5 -- Python 2.6.8 -- py-1.4.26 -- pytest-2.6.4 -- /usr/bin/python2.6 +collecting ... collected 173 items +test_bigint_as_string.py::TestBigintAsString::test_dict_keys PASSED +test_bigint_as_string.py::TestBigintAsString::test_dicts PASSED +test_bigint_as_string.py::TestBigintAsString::test_ints PASSED +test_bigint_as_string.py::TestBigintAsString::test_lists PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_dict_keys PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_dicts PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_ints PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_ints_outside_range_fails PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_invalid_counts PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_lists PASSED +test_check_circular.py::TestCheckCircular::test_circular_composite PASSED +test_check_circular.py::TestCheckCircular::test_circular_default PASSED +test_check_circular.py::TestCheckCircular::test_circular_dict PASSED +test_check_circular.py::TestCheckCircular::test_circular_list PASSED +test_check_circular.py::TestCheckCircular::test_circular_off_default PASSED +test_decimal.py::TestDecimal::test_decimal_decode PASSED +test_decimal.py::TestDecimal::test_decimal_defaults PASSED +test_decimal.py::TestDecimal::test_decimal_encode PASSED +test_decimal.py::TestDecimal::test_decimal_reload PASSED +test_decimal.py::TestDecimal::test_decimal_roundtrip PASSED +test_decimal.py::TestDecimal::test_stringify_key PASSED +test_decode.py::TestDecode::test_bounds_checking PASSED +test_decode.py::TestDecode::test_decimal PASSED +test_decode.py::TestDecode::test_decoder_optimizations PASSED +test_decode.py::TestDecode::test_empty_objects PASSED +test_decode.py::TestDecode::test_empty_strings PASSED +test_decode.py::TestDecode::test_float PASSED +test_decode.py::TestDecode::test_keys_reuse_str PASSED +test_decode.py::TestDecode::test_keys_reuse_unicode PASSED +test_decode.py::TestDecode::test_object_pairs_hook PASSED +test_decode.py::TestDecode::test_raw_decode PASSED +test_default.py::TestDefault::test_default PASSED +test_dump.py::TestDump::test_accumulator PASSED +test_dump.py::TestDump::test_constants PASSED +test_dump.py::TestDump::test_dump PASSED +test_dump.py::TestDump::test_dumps PASSED +test_dump.py::TestDump::test_encode_truefalse PASSED +test_dump.py::TestDump::test_indent_unknown_type_acceptance PASSED +test_dump.py::TestDump::test_ordered_dict PASSED +test_dump.py::TestDump::test_sort_keys PASSED +test_dump.py::TestDump::test_stringify_key PASSED +test_encode_basestring_ascii.py::TestEncodeBaseStringAscii::test_c_encode_basestring_ascii PASSED +test_encode_basestring_ascii.py::TestEncodeBaseStringAscii::test_py_encode_basestring_ascii PASSED +test_encode_basestring_ascii.py::TestEncodeBaseStringAscii::test_sorted_dict PASSED +test_encode_for_html.py::TestEncodeForHTML::test_basic_encode PASSED +test_encode_for_html.py::TestEncodeForHTML::test_basic_roundtrip PASSED +test_encode_for_html.py::TestEncodeForHTML::test_prevent_script_breakout PASSED +test_errors.py::TestErrors::test_decode_error PASSED +test_errors.py::TestErrors::test_error_is_pickable PASSED +test_errors.py::TestErrors::test_scan_error PASSED +test_errors.py::TestErrors::test_string_keys_error PASSED +test_fail.py::TestFail::test_array_decoder_issue46 PASSED +test_fail.py::TestFail::test_failures PASSED +test_fail.py::TestFail::test_truncated_input PASSED +test_float.py::TestFloat::test_degenerates_allow PASSED +test_float.py::TestFloat::test_degenerates_deny PASSED +test_float.py::TestFloat::test_degenerates_ignore PASSED +test_float.py::TestFloat::test_floats PASSED +test_float.py::TestFloat::test_ints PASSED +test_for_json.py::TestForJson::test_for_json_encodes_dict_subclass PASSED +test_for_json.py::TestForJson::test_for_json_encodes_list PASSED +test_for_json.py::TestForJson::test_for_json_encodes_list_subclass PASSED +test_for_json.py::TestForJson::test_for_json_encodes_list_within_object PASSED +test_for_json.py::TestForJson::test_for_json_encodes_object_nested_in_dict PASSED +test_for_json.py::TestForJson::test_for_json_encodes_object_nested_in_list_within_dict PASSED +test_for_json.py::TestForJson::test_for_json_encodes_object_nested_within_object PASSED +test_for_json.py::TestForJson::test_for_json_encodes_stand_alone_object PASSED +test_for_json.py::TestForJson::test_for_json_ignored_if_not_true_with_dict_subclass PASSED +test_for_json.py::TestForJson::test_for_json_ignored_if_not_true_with_list_subclass PASSED +test_for_json.py::TestForJson::test_raises_typeerror_if_for_json_not_true_with_object PASSED +test_indent.py::TestIndent::test_indent PASSED +test_indent.py::TestIndent::test_indent0 PASSED +test_indent.py::TestIndent::test_separators PASSED +test_item_sort_key.py::TestItemSortKey::test_case PASSED +test_item_sort_key.py::TestItemSortKey::test_simple_first PASSED +test_namedtuple.py::TestNamedTuple::test_asdict_not_callable_dump PASSED +test_namedtuple.py::TestNamedTuple::test_asdict_not_callable_dumps PASSED +test_namedtuple.py::TestNamedTuple::test_namedtuple_dump PASSED +test_namedtuple.py::TestNamedTuple::test_namedtuple_dump_false PASSED +test_namedtuple.py::TestNamedTuple::test_namedtuple_dumps PASSED +test_namedtuple.py::TestNamedTuple::test_namedtuple_dumps_false PASSED +test_pass1.py::TestPass1::test_parse PASSED +test_pass2.py::TestPass2::test_parse PASSED +test_pass3.py::TestPass3::test_parse PASSED +test_recursion.py::TestRecursion::test_defaultrecursion PASSED +test_recursion.py::TestRecursion::test_dictrecursion PASSED +test_recursion.py::TestRecursion::test_listrecursion PASSED +test_scanstring.py::TestScanString::test_c_scanstring PASSED +test_scanstring.py::TestScanString::test_issue3623 PASSED +test_scanstring.py::TestScanString::test_overflow PASSED +test_scanstring.py::TestScanString::test_py_scanstring PASSED +test_scanstring.py::TestScanString::test_surrogates PASSED +test_separators.py::TestSeparators::test_separators PASSED +test_speedups.py::TestDecode::test_make_encoder PASSED +test_speedups.py::TestDecode::test_make_scanner PASSED +test_tool.py::TestTool::test_infile_outfile PASSED +test_tool.py::TestTool::test_infile_stdout PASSED +test_tool.py::TestTool::test_stdin_stdout PASSED +test_tuple.py::TestTuples::test_tuple_array_dump PASSED +test_tuple.py::TestTuples::test_tuple_array_dumps PASSED +test_tuple.py::TestNamedTuple::test_namedtuple_dump PASSED +test_unicode.py::TestUnicode::test_big_unicode_decode PASSED +test_unicode.py::TestUnicode::test_big_unicode_encode PASSED +test_unicode.py::TestUnicode::test_default_encoding PASSED +test_unicode.py::TestUnicode::test_encoding1 PASSED +test_unicode.py::TestUnicode::test_encoding2 PASSED +test_unicode.py::TestUnicode::test_encoding3 PASSED +test_unicode.py::TestUnicode::test_encoding4 PASSED +test_unicode.py::TestUnicode::test_encoding5 PASSED +test_unicode.py::TestUnicode::test_encoding6 PASSED +test_unicode.py::TestUnicode::test_ensure_ascii_false_bytestring_encoding PASSED +test_unicode.py::TestUnicode::test_ensure_ascii_false_returns_unicode PASSED +test_unicode.py::TestUnicode::test_ensure_ascii_linebreak_encoding PASSED +test_unicode.py::TestUnicode::test_ensure_ascii_still_works PASSED +test_unicode.py::TestUnicode::test_invalid_escape_sequences PASSED +test_unicode.py::TestUnicode::test_object_pairs_hook_with_unicode PASSED +test_unicode.py::TestUnicode::test_strip_bom PASSED +test_unicode.py::TestUnicode::test_unicode_decode PASSED +test_unicode.py::TestUnicode::test_unicode_preservation PASSED diff -r 9e076feb8c0b -r c0b8c110b0a8 components/python/simplejson/test/results-2.7-32.master --- a/components/python/simplejson/test/results-2.7-32.master Wed Jul 15 06:04:45 2015 -0700 +++ b/components/python/simplejson/test/results-2.7-32.master Tue Jul 28 09:20:10 2015 -0700 @@ -1,157 +1,121 @@ -running test -running egg_info -writing simplejson.egg-info/PKG-INFO -writing top-level names to simplejson.egg-info/top_level.txt -writing dependency_links to simplejson.egg-info/dependency_links.txt -reading manifest file 'simplejson.egg-info/SOURCES.txt' -writing manifest file 'simplejson.egg-info/SOURCES.txt' -running build_ext -building 'simplejson._speedups' extension -creating build -creating build/temp.solaris -creating build/temp.solaris -$(CC) -cc -G -test_circular_composite (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_default (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_dict (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_list (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_off_default (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_decimal (simplejson.tests.test_decode.TestDecode) ... ok -test_decoder_optimizations (simplejson.tests.test_decode.TestDecode) ... ok -test_empty_objects (simplejson.tests.test_decode.TestDecode) ... ok -test_empty_strings (simplejson.tests.test_decode.TestDecode) ... ok -test_float (simplejson.tests.test_decode.TestDecode) ... ok -test_keys_reuse_str (simplejson.tests.test_decode.TestDecode) ... ok -test_keys_reuse_unicode (simplejson.tests.test_decode.TestDecode) ... ok -test_object_pairs_hook (simplejson.tests.test_decode.TestDecode) ... ok -test_raw_decode (simplejson.tests.test_decode.TestDecode) ... ok -test_default (simplejson.tests.test_default.TestDefault) ... ok -test_dump (simplejson.tests.test_dump.TestDump) ... ok -test_dumps (simplejson.tests.test_dump.TestDump) ... ok -test_encode_truefalse (simplejson.tests.test_dump.TestDump) ... ok -test_ordered_dict (simplejson.tests.test_dump.TestDump) ... ok -test_c_encode_basestring_ascii (simplejson.tests.test_encode_basestring_ascii.TestEncodeBaseStringAscii) ... ok -test_py_encode_basestring_ascii (simplejson.tests.test_encode_basestring_ascii.TestEncodeBaseStringAscii) ... ok -test_basic_encode (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_basic_roundtrip (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_prevent_script_breakout (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_decode_error (simplejson.tests.test_errors.TestErrors) ... ok -test_string_keys_error (simplejson.tests.test_errors.TestErrors) ... ok -test_array_decoder_issue46 (simplejson.tests.test_fail.TestFail) ... ok -test_failures (simplejson.tests.test_fail.TestFail) ... ok -test_floats (simplejson.tests.test_float.TestFloat) ... ok -test_ints (simplejson.tests.test_float.TestFloat) ... ok -test_indent (simplejson.tests.test_indent.TestIndent) ... ok -test_indent0 (simplejson.tests.test_indent.TestIndent) ... ok -test_parse (simplejson.tests.test_pass1.TestPass1) ... ok -test_parse (simplejson.tests.test_pass2.TestPass2) ... ok -test_parse (simplejson.tests.test_pass3.TestPass3) ... ok -test_defaultrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_dictrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_listrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_c_scanstring (simplejson.tests.test_scanstring.TestScanString) ... ok -test_issue3623 (simplejson.tests.test_scanstring.TestScanString) ... ok -test_overflow (simplejson.tests.test_scanstring.TestScanString) ... ok -test_py_scanstring (simplejson.tests.test_scanstring.TestScanString) ... ok -test_separators (simplejson.tests.test_separators.TestSeparators) ... ok -test_make_encoder (simplejson.tests.test_speedups.TestDecode) ... ok -test_make_scanner (simplejson.tests.test_speedups.TestDecode) ... ok -test_big_unicode_decode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_big_unicode_encode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_default_encoding (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding1 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding2 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding3 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding4 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding5 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding6 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_ensure_ascii_false_bytestring_encoding (simplejson.tests.test_unicode.TestUnicode) ... ok -test_ensure_ascii_false_returns_unicode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_object_pairs_hook_with_unicode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_unicode_decode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_unicode_preservation (simplejson.tests.test_unicode.TestUnicode) ... ok -test_decimal_decode (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_defaults (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_encode (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_roundtrip (simplejson.tests.test_decimal.TestDecimal) ... ok -simplejson () -Doctest: simplejson ... ok -encode (simplejson.encoder.JSONEncoder) -Doctest: simplejson.encoder.JSONEncoder.encode ... ok -$(SOURCE_DIR)/simplejson/tests/../../index.rst -Doctest: index.rst ... ok -test_circular_composite (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_default (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_dict (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_list (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_off_default (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_decimal (simplejson.tests.test_decode.TestDecode) ... ok -test_decoder_optimizations (simplejson.tests.test_decode.TestDecode) ... ok -test_empty_objects (simplejson.tests.test_decode.TestDecode) ... ok -test_empty_strings (simplejson.tests.test_decode.TestDecode) ... ok -test_float (simplejson.tests.test_decode.TestDecode) ... ok -test_keys_reuse_str (simplejson.tests.test_decode.TestDecode) ... ok -test_keys_reuse_unicode (simplejson.tests.test_decode.TestDecode) ... ok -test_object_pairs_hook (simplejson.tests.test_decode.TestDecode) ... ok -test_raw_decode (simplejson.tests.test_decode.TestDecode) ... ok -test_default (simplejson.tests.test_default.TestDefault) ... ok -test_dump (simplejson.tests.test_dump.TestDump) ... ok -test_dumps (simplejson.tests.test_dump.TestDump) ... ok -test_encode_truefalse (simplejson.tests.test_dump.TestDump) ... ok -test_ordered_dict (simplejson.tests.test_dump.TestDump) ... ok -test_c_encode_basestring_ascii (simplejson.tests.test_encode_basestring_ascii.TestEncodeBaseStringAscii) ... ok -test_py_encode_basestring_ascii (simplejson.tests.test_encode_basestring_ascii.TestEncodeBaseStringAscii) ... ok -test_basic_encode (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_basic_roundtrip (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_prevent_script_breakout (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_decode_error (simplejson.tests.test_errors.TestErrors) ... ok -test_string_keys_error (simplejson.tests.test_errors.TestErrors) ... ok -test_array_decoder_issue46 (simplejson.tests.test_fail.TestFail) ... ok -test_failures (simplejson.tests.test_fail.TestFail) ... ok -test_floats (simplejson.tests.test_float.TestFloat) ... ok -test_ints (simplejson.tests.test_float.TestFloat) ... ok -test_indent (simplejson.tests.test_indent.TestIndent) ... ok -test_indent0 (simplejson.tests.test_indent.TestIndent) ... ok -test_parse (simplejson.tests.test_pass1.TestPass1) ... ok -test_parse (simplejson.tests.test_pass2.TestPass2) ... ok -test_parse (simplejson.tests.test_pass3.TestPass3) ... ok -test_defaultrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_dictrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_listrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_c_scanstring (simplejson.tests.test_scanstring.TestScanString) ... ok -test_issue3623 (simplejson.tests.test_scanstring.TestScanString) ... ok -test_overflow (simplejson.tests.test_scanstring.TestScanString) ... ok -test_py_scanstring (simplejson.tests.test_scanstring.TestScanString) ... ok -test_separators (simplejson.tests.test_separators.TestSeparators) ... ok -test_make_encoder (simplejson.tests.test_speedups.TestDecode) ... ok -test_make_scanner (simplejson.tests.test_speedups.TestDecode) ... ok -test_big_unicode_decode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_big_unicode_encode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_default_encoding (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding1 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding2 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding3 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding4 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding5 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding6 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_ensure_ascii_false_bytestring_encoding (simplejson.tests.test_unicode.TestUnicode) ... ok -test_ensure_ascii_false_returns_unicode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_object_pairs_hook_with_unicode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_unicode_decode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_unicode_preservation (simplejson.tests.test_unicode.TestUnicode) ... ok -test_decimal_decode (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_defaults (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_encode (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_roundtrip (simplejson.tests.test_decimal.TestDecimal) ... ok -simplejson () -Doctest: simplejson ... ok -encode (simplejson.encoder.JSONEncoder) -Doctest: simplejson.encoder.JSONEncoder.encode ... ok -$(SOURCE_DIR)/simplejson/tests/../../index.rst -Doctest: index.rst ... ok - ----------------------------------------------------------------------- -Ran 132 tests in - -OK +platform sunos5 -- Python 2.7.9 -- py-1.4.26 -- pytest-2.6.4 -- /usr/bin/python2.7 +collecting ... collected 173 items +test_bigint_as_string.py::TestBigintAsString::test_dict_keys PASSED +test_bigint_as_string.py::TestBigintAsString::test_dicts PASSED +test_bigint_as_string.py::TestBigintAsString::test_ints PASSED +test_bigint_as_string.py::TestBigintAsString::test_lists PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_dict_keys PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_dicts PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_ints PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_ints_outside_range_fails PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_invalid_counts PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_lists PASSED +test_check_circular.py::TestCheckCircular::test_circular_composite PASSED +test_check_circular.py::TestCheckCircular::test_circular_default PASSED +test_check_circular.py::TestCheckCircular::test_circular_dict PASSED +test_check_circular.py::TestCheckCircular::test_circular_list PASSED +test_check_circular.py::TestCheckCircular::test_circular_off_default PASSED +test_decimal.py::TestDecimal::test_decimal_decode PASSED +test_decimal.py::TestDecimal::test_decimal_defaults PASSED +test_decimal.py::TestDecimal::test_decimal_encode PASSED +test_decimal.py::TestDecimal::test_decimal_reload PASSED +test_decimal.py::TestDecimal::test_decimal_roundtrip PASSED +test_decimal.py::TestDecimal::test_stringify_key PASSED +test_decode.py::TestDecode::test_bounds_checking PASSED +test_decode.py::TestDecode::test_decimal PASSED +test_decode.py::TestDecode::test_decoder_optimizations PASSED +test_decode.py::TestDecode::test_empty_objects PASSED +test_decode.py::TestDecode::test_empty_strings PASSED +test_decode.py::TestDecode::test_float PASSED +test_decode.py::TestDecode::test_keys_reuse_str PASSED +test_decode.py::TestDecode::test_keys_reuse_unicode PASSED +test_decode.py::TestDecode::test_object_pairs_hook PASSED +test_decode.py::TestDecode::test_raw_decode PASSED +test_default.py::TestDefault::test_default PASSED +test_dump.py::TestDump::test_accumulator PASSED +test_dump.py::TestDump::test_constants PASSED +test_dump.py::TestDump::test_dump PASSED +test_dump.py::TestDump::test_dumps PASSED +test_dump.py::TestDump::test_encode_truefalse PASSED +test_dump.py::TestDump::test_indent_unknown_type_acceptance PASSED +test_dump.py::TestDump::test_ordered_dict PASSED +test_dump.py::TestDump::test_sort_keys PASSED +test_dump.py::TestDump::test_stringify_key PASSED +test_encode_basestring_ascii.py::TestEncodeBaseStringAscii::test_c_encode_basestring_ascii PASSED +test_encode_basestring_ascii.py::TestEncodeBaseStringAscii::test_py_encode_basestring_ascii PASSED +test_encode_basestring_ascii.py::TestEncodeBaseStringAscii::test_sorted_dict PASSED +test_encode_for_html.py::TestEncodeForHTML::test_basic_encode PASSED +test_encode_for_html.py::TestEncodeForHTML::test_basic_roundtrip PASSED +test_encode_for_html.py::TestEncodeForHTML::test_prevent_script_breakout PASSED +test_errors.py::TestErrors::test_decode_error PASSED +test_errors.py::TestErrors::test_error_is_pickable PASSED +test_errors.py::TestErrors::test_scan_error PASSED +test_errors.py::TestErrors::test_string_keys_error PASSED +test_fail.py::TestFail::test_array_decoder_issue46 PASSED +test_fail.py::TestFail::test_failures PASSED +test_fail.py::TestFail::test_truncated_input PASSED +test_float.py::TestFloat::test_degenerates_allow PASSED +test_float.py::TestFloat::test_degenerates_deny PASSED +test_float.py::TestFloat::test_degenerates_ignore PASSED +test_float.py::TestFloat::test_floats PASSED +test_float.py::TestFloat::test_ints PASSED +test_for_json.py::TestForJson::test_for_json_encodes_dict_subclass PASSED +test_for_json.py::TestForJson::test_for_json_encodes_list PASSED +test_for_json.py::TestForJson::test_for_json_encodes_list_subclass PASSED +test_for_json.py::TestForJson::test_for_json_encodes_list_within_object PASSED +test_for_json.py::TestForJson::test_for_json_encodes_object_nested_in_dict PASSED +test_for_json.py::TestForJson::test_for_json_encodes_object_nested_in_list_within_dict PASSED +test_for_json.py::TestForJson::test_for_json_encodes_object_nested_within_object PASSED +test_for_json.py::TestForJson::test_for_json_encodes_stand_alone_object PASSED +test_for_json.py::TestForJson::test_for_json_ignored_if_not_true_with_dict_subclass PASSED +test_for_json.py::TestForJson::test_for_json_ignored_if_not_true_with_list_subclass PASSED +test_for_json.py::TestForJson::test_raises_typeerror_if_for_json_not_true_with_object PASSED +test_indent.py::TestIndent::test_indent PASSED +test_indent.py::TestIndent::test_indent0 PASSED +test_indent.py::TestIndent::test_separators PASSED +test_item_sort_key.py::TestItemSortKey::test_case PASSED +test_item_sort_key.py::TestItemSortKey::test_simple_first PASSED +test_namedtuple.py::TestNamedTuple::test_asdict_not_callable_dump PASSED +test_namedtuple.py::TestNamedTuple::test_asdict_not_callable_dumps PASSED +test_namedtuple.py::TestNamedTuple::test_namedtuple_dump PASSED +test_namedtuple.py::TestNamedTuple::test_namedtuple_dump_false PASSED +test_namedtuple.py::TestNamedTuple::test_namedtuple_dumps PASSED +test_namedtuple.py::TestNamedTuple::test_namedtuple_dumps_false PASSED +test_pass1.py::TestPass1::test_parse PASSED +test_pass2.py::TestPass2::test_parse PASSED +test_pass3.py::TestPass3::test_parse PASSED +test_recursion.py::TestRecursion::test_defaultrecursion PASSED +test_recursion.py::TestRecursion::test_dictrecursion PASSED +test_recursion.py::TestRecursion::test_listrecursion PASSED +test_scanstring.py::TestScanString::test_c_scanstring PASSED +test_scanstring.py::TestScanString::test_issue3623 PASSED +test_scanstring.py::TestScanString::test_overflow PASSED +test_scanstring.py::TestScanString::test_py_scanstring PASSED +test_scanstring.py::TestScanString::test_surrogates PASSED +test_separators.py::TestSeparators::test_separators PASSED +test_speedups.py::TestDecode::test_make_encoder SKIPPED +test_speedups.py::TestDecode::test_make_scanner SKIPPED +test_tool.py::TestTool::test_infile_outfile PASSED +test_tool.py::TestTool::test_infile_stdout PASSED +test_tool.py::TestTool::test_stdin_stdout PASSED +test_tuple.py::TestTuples::test_tuple_array_dump PASSED +test_tuple.py::TestTuples::test_tuple_array_dumps PASSED +test_tuple.py::TestNamedTuple::test_namedtuple_dump PASSED +test_unicode.py::TestUnicode::test_big_unicode_decode PASSED +test_unicode.py::TestUnicode::test_big_unicode_encode PASSED +test_unicode.py::TestUnicode::test_default_encoding PASSED +test_unicode.py::TestUnicode::test_encoding1 PASSED +test_unicode.py::TestUnicode::test_encoding2 PASSED +test_unicode.py::TestUnicode::test_encoding3 PASSED +test_unicode.py::TestUnicode::test_encoding4 PASSED +test_unicode.py::TestUnicode::test_encoding5 PASSED +test_unicode.py::TestUnicode::test_encoding6 PASSED +test_unicode.py::TestUnicode::test_ensure_ascii_false_bytestring_encoding PASSED +test_unicode.py::TestUnicode::test_ensure_ascii_false_returns_unicode PASSED +test_unicode.py::TestUnicode::test_ensure_ascii_linebreak_encoding PASSED +test_unicode.py::TestUnicode::test_ensure_ascii_still_works PASSED +test_unicode.py::TestUnicode::test_invalid_escape_sequences PASSED +test_unicode.py::TestUnicode::test_object_pairs_hook_with_unicode PASSED +test_unicode.py::TestUnicode::test_strip_bom PASSED +test_unicode.py::TestUnicode::test_unicode_decode PASSED +test_unicode.py::TestUnicode::test_unicode_preservation PASSED diff -r 9e076feb8c0b -r c0b8c110b0a8 components/python/simplejson/test/results-2.7-64.master --- a/components/python/simplejson/test/results-2.7-64.master Wed Jul 15 06:04:45 2015 -0700 +++ b/components/python/simplejson/test/results-2.7-64.master Tue Jul 28 09:20:10 2015 -0700 @@ -1,157 +1,121 @@ -running test -running egg_info -writing simplejson.egg-info/PKG-INFO -writing top-level names to simplejson.egg-info/top_level.txt -writing dependency_links to simplejson.egg-info/dependency_links.txt -reading manifest file 'simplejson.egg-info/SOURCES.txt' -writing manifest file 'simplejson.egg-info/SOURCES.txt' -running build_ext -building 'simplejson._speedups' extension -creating build/temp.solaris -creating build/temp.solaris -$(CC) -creating $(SOURCE_DIR)/simplejson/64 -cc -G -test_circular_composite (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_default (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_dict (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_list (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_off_default (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_decimal (simplejson.tests.test_decode.TestDecode) ... ok -test_decoder_optimizations (simplejson.tests.test_decode.TestDecode) ... ok -test_empty_objects (simplejson.tests.test_decode.TestDecode) ... ok -test_empty_strings (simplejson.tests.test_decode.TestDecode) ... ok -test_float (simplejson.tests.test_decode.TestDecode) ... ok -test_keys_reuse_str (simplejson.tests.test_decode.TestDecode) ... ok -test_keys_reuse_unicode (simplejson.tests.test_decode.TestDecode) ... ok -test_object_pairs_hook (simplejson.tests.test_decode.TestDecode) ... ok -test_raw_decode (simplejson.tests.test_decode.TestDecode) ... ok -test_default (simplejson.tests.test_default.TestDefault) ... ok -test_dump (simplejson.tests.test_dump.TestDump) ... ok -test_dumps (simplejson.tests.test_dump.TestDump) ... ok -test_encode_truefalse (simplejson.tests.test_dump.TestDump) ... ok -test_ordered_dict (simplejson.tests.test_dump.TestDump) ... ok -test_c_encode_basestring_ascii (simplejson.tests.test_encode_basestring_ascii.TestEncodeBaseStringAscii) ... ok -test_py_encode_basestring_ascii (simplejson.tests.test_encode_basestring_ascii.TestEncodeBaseStringAscii) ... ok -test_basic_encode (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_basic_roundtrip (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_prevent_script_breakout (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_decode_error (simplejson.tests.test_errors.TestErrors) ... ok -test_string_keys_error (simplejson.tests.test_errors.TestErrors) ... ok -test_array_decoder_issue46 (simplejson.tests.test_fail.TestFail) ... ok -test_failures (simplejson.tests.test_fail.TestFail) ... ok -test_floats (simplejson.tests.test_float.TestFloat) ... ok -test_ints (simplejson.tests.test_float.TestFloat) ... ok -test_indent (simplejson.tests.test_indent.TestIndent) ... ok -test_indent0 (simplejson.tests.test_indent.TestIndent) ... ok -test_parse (simplejson.tests.test_pass1.TestPass1) ... ok -test_parse (simplejson.tests.test_pass2.TestPass2) ... ok -test_parse (simplejson.tests.test_pass3.TestPass3) ... ok -test_defaultrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_dictrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_listrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_c_scanstring (simplejson.tests.test_scanstring.TestScanString) ... ok -test_issue3623 (simplejson.tests.test_scanstring.TestScanString) ... ok -test_overflow (simplejson.tests.test_scanstring.TestScanString) ... ok -test_py_scanstring (simplejson.tests.test_scanstring.TestScanString) ... ok -test_separators (simplejson.tests.test_separators.TestSeparators) ... ok -test_make_encoder (simplejson.tests.test_speedups.TestDecode) ... ok -test_make_scanner (simplejson.tests.test_speedups.TestDecode) ... ok -test_big_unicode_decode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_big_unicode_encode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_default_encoding (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding1 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding2 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding3 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding4 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding5 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding6 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_ensure_ascii_false_bytestring_encoding (simplejson.tests.test_unicode.TestUnicode) ... ok -test_ensure_ascii_false_returns_unicode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_object_pairs_hook_with_unicode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_unicode_decode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_unicode_preservation (simplejson.tests.test_unicode.TestUnicode) ... ok -test_decimal_decode (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_defaults (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_encode (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_roundtrip (simplejson.tests.test_decimal.TestDecimal) ... ok -simplejson () -Doctest: simplejson ... ok -encode (simplejson.encoder.JSONEncoder) -Doctest: simplejson.encoder.JSONEncoder.encode ... ok -$(SOURCE_DIR)/simplejson/tests/../../index.rst -Doctest: index.rst ... ok -test_circular_composite (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_default (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_dict (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_list (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_circular_off_default (simplejson.tests.test_check_circular.TestCheckCircular) ... ok -test_decimal (simplejson.tests.test_decode.TestDecode) ... ok -test_decoder_optimizations (simplejson.tests.test_decode.TestDecode) ... ok -test_empty_objects (simplejson.tests.test_decode.TestDecode) ... ok -test_empty_strings (simplejson.tests.test_decode.TestDecode) ... ok -test_float (simplejson.tests.test_decode.TestDecode) ... ok -test_keys_reuse_str (simplejson.tests.test_decode.TestDecode) ... ok -test_keys_reuse_unicode (simplejson.tests.test_decode.TestDecode) ... ok -test_object_pairs_hook (simplejson.tests.test_decode.TestDecode) ... ok -test_raw_decode (simplejson.tests.test_decode.TestDecode) ... ok -test_default (simplejson.tests.test_default.TestDefault) ... ok -test_dump (simplejson.tests.test_dump.TestDump) ... ok -test_dumps (simplejson.tests.test_dump.TestDump) ... ok -test_encode_truefalse (simplejson.tests.test_dump.TestDump) ... ok -test_ordered_dict (simplejson.tests.test_dump.TestDump) ... ok -test_c_encode_basestring_ascii (simplejson.tests.test_encode_basestring_ascii.TestEncodeBaseStringAscii) ... ok -test_py_encode_basestring_ascii (simplejson.tests.test_encode_basestring_ascii.TestEncodeBaseStringAscii) ... ok -test_basic_encode (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_basic_roundtrip (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_prevent_script_breakout (simplejson.tests.test_encode_for_html.TestEncodeForHTML) ... ok -test_decode_error (simplejson.tests.test_errors.TestErrors) ... ok -test_string_keys_error (simplejson.tests.test_errors.TestErrors) ... ok -test_array_decoder_issue46 (simplejson.tests.test_fail.TestFail) ... ok -test_failures (simplejson.tests.test_fail.TestFail) ... ok -test_floats (simplejson.tests.test_float.TestFloat) ... ok -test_ints (simplejson.tests.test_float.TestFloat) ... ok -test_indent (simplejson.tests.test_indent.TestIndent) ... ok -test_indent0 (simplejson.tests.test_indent.TestIndent) ... ok -test_parse (simplejson.tests.test_pass1.TestPass1) ... ok -test_parse (simplejson.tests.test_pass2.TestPass2) ... ok -test_parse (simplejson.tests.test_pass3.TestPass3) ... ok -test_defaultrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_dictrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_listrecursion (simplejson.tests.test_recursion.TestRecursion) ... ok -test_c_scanstring (simplejson.tests.test_scanstring.TestScanString) ... ok -test_issue3623 (simplejson.tests.test_scanstring.TestScanString) ... ok -test_overflow (simplejson.tests.test_scanstring.TestScanString) ... ok -test_py_scanstring (simplejson.tests.test_scanstring.TestScanString) ... ok -test_separators (simplejson.tests.test_separators.TestSeparators) ... ok -test_make_encoder (simplejson.tests.test_speedups.TestDecode) ... ok -test_make_scanner (simplejson.tests.test_speedups.TestDecode) ... ok -test_big_unicode_decode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_big_unicode_encode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_default_encoding (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding1 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding2 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding3 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding4 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding5 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_encoding6 (simplejson.tests.test_unicode.TestUnicode) ... ok -test_ensure_ascii_false_bytestring_encoding (simplejson.tests.test_unicode.TestUnicode) ... ok -test_ensure_ascii_false_returns_unicode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_object_pairs_hook_with_unicode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_unicode_decode (simplejson.tests.test_unicode.TestUnicode) ... ok -test_unicode_preservation (simplejson.tests.test_unicode.TestUnicode) ... ok -test_decimal_decode (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_defaults (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_encode (simplejson.tests.test_decimal.TestDecimal) ... ok -test_decimal_roundtrip (simplejson.tests.test_decimal.TestDecimal) ... ok -simplejson () -Doctest: simplejson ... ok -encode (simplejson.encoder.JSONEncoder) -Doctest: simplejson.encoder.JSONEncoder.encode ... ok -$(SOURCE_DIR)/simplejson/tests/../../index.rst -Doctest: index.rst ... ok - ----------------------------------------------------------------------- -Ran 132 tests in - -OK +platform sunos5 -- Python 2.7.9 -- py-1.4.26 -- pytest-2.6.4 -- /usr/bin/python2.7 +collecting ... collected 173 items +test_bigint_as_string.py::TestBigintAsString::test_dict_keys PASSED +test_bigint_as_string.py::TestBigintAsString::test_dicts PASSED +test_bigint_as_string.py::TestBigintAsString::test_ints PASSED +test_bigint_as_string.py::TestBigintAsString::test_lists PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_dict_keys PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_dicts PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_ints PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_ints_outside_range_fails PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_invalid_counts PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_lists PASSED +test_check_circular.py::TestCheckCircular::test_circular_composite PASSED +test_check_circular.py::TestCheckCircular::test_circular_default PASSED +test_check_circular.py::TestCheckCircular::test_circular_dict PASSED +test_check_circular.py::TestCheckCircular::test_circular_list PASSED +test_check_circular.py::TestCheckCircular::test_circular_off_default PASSED +test_decimal.py::TestDecimal::test_decimal_decode PASSED +test_decimal.py::TestDecimal::test_decimal_defaults PASSED +test_decimal.py::TestDecimal::test_decimal_encode PASSED +test_decimal.py::TestDecimal::test_decimal_reload PASSED +test_decimal.py::TestDecimal::test_decimal_roundtrip PASSED +test_decimal.py::TestDecimal::test_stringify_key PASSED +test_decode.py::TestDecode::test_bounds_checking PASSED +test_decode.py::TestDecode::test_decimal PASSED +test_decode.py::TestDecode::test_decoder_optimizations PASSED +test_decode.py::TestDecode::test_empty_objects PASSED +test_decode.py::TestDecode::test_empty_strings PASSED +test_decode.py::TestDecode::test_float PASSED +test_decode.py::TestDecode::test_keys_reuse_str PASSED +test_decode.py::TestDecode::test_keys_reuse_unicode PASSED +test_decode.py::TestDecode::test_object_pairs_hook PASSED +test_decode.py::TestDecode::test_raw_decode PASSED +test_default.py::TestDefault::test_default PASSED +test_dump.py::TestDump::test_accumulator PASSED +test_dump.py::TestDump::test_constants PASSED +test_dump.py::TestDump::test_dump PASSED +test_dump.py::TestDump::test_dumps PASSED +test_dump.py::TestDump::test_encode_truefalse PASSED +test_dump.py::TestDump::test_indent_unknown_type_acceptance PASSED +test_dump.py::TestDump::test_ordered_dict PASSED +test_dump.py::TestDump::test_sort_keys PASSED +test_dump.py::TestDump::test_stringify_key PASSED +test_encode_basestring_ascii.py::TestEncodeBaseStringAscii::test_c_encode_basestring_ascii PASSED +test_encode_basestring_ascii.py::TestEncodeBaseStringAscii::test_py_encode_basestring_ascii PASSED +test_encode_basestring_ascii.py::TestEncodeBaseStringAscii::test_sorted_dict PASSED +test_encode_for_html.py::TestEncodeForHTML::test_basic_encode PASSED +test_encode_for_html.py::TestEncodeForHTML::test_basic_roundtrip PASSED +test_encode_for_html.py::TestEncodeForHTML::test_prevent_script_breakout PASSED +test_errors.py::TestErrors::test_decode_error PASSED +test_errors.py::TestErrors::test_error_is_pickable PASSED +test_errors.py::TestErrors::test_scan_error PASSED +test_errors.py::TestErrors::test_string_keys_error PASSED +test_fail.py::TestFail::test_array_decoder_issue46 PASSED +test_fail.py::TestFail::test_failures PASSED +test_fail.py::TestFail::test_truncated_input PASSED +test_float.py::TestFloat::test_degenerates_allow PASSED +test_float.py::TestFloat::test_degenerates_deny PASSED +test_float.py::TestFloat::test_degenerates_ignore PASSED +test_float.py::TestFloat::test_floats PASSED +test_float.py::TestFloat::test_ints PASSED +test_for_json.py::TestForJson::test_for_json_encodes_dict_subclass PASSED +test_for_json.py::TestForJson::test_for_json_encodes_list PASSED +test_for_json.py::TestForJson::test_for_json_encodes_list_subclass PASSED +test_for_json.py::TestForJson::test_for_json_encodes_list_within_object PASSED +test_for_json.py::TestForJson::test_for_json_encodes_object_nested_in_dict PASSED +test_for_json.py::TestForJson::test_for_json_encodes_object_nested_in_list_within_dict PASSED +test_for_json.py::TestForJson::test_for_json_encodes_object_nested_within_object PASSED +test_for_json.py::TestForJson::test_for_json_encodes_stand_alone_object PASSED +test_for_json.py::TestForJson::test_for_json_ignored_if_not_true_with_dict_subclass PASSED +test_for_json.py::TestForJson::test_for_json_ignored_if_not_true_with_list_subclass PASSED +test_for_json.py::TestForJson::test_raises_typeerror_if_for_json_not_true_with_object PASSED +test_indent.py::TestIndent::test_indent PASSED +test_indent.py::TestIndent::test_indent0 PASSED +test_indent.py::TestIndent::test_separators PASSED +test_item_sort_key.py::TestItemSortKey::test_case PASSED +test_item_sort_key.py::TestItemSortKey::test_simple_first PASSED +test_namedtuple.py::TestNamedTuple::test_asdict_not_callable_dump PASSED +test_namedtuple.py::TestNamedTuple::test_asdict_not_callable_dumps PASSED +test_namedtuple.py::TestNamedTuple::test_namedtuple_dump PASSED +test_namedtuple.py::TestNamedTuple::test_namedtuple_dump_false PASSED +test_namedtuple.py::TestNamedTuple::test_namedtuple_dumps PASSED +test_namedtuple.py::TestNamedTuple::test_namedtuple_dumps_false PASSED +test_pass1.py::TestPass1::test_parse PASSED +test_pass2.py::TestPass2::test_parse PASSED +test_pass3.py::TestPass3::test_parse PASSED +test_recursion.py::TestRecursion::test_defaultrecursion PASSED +test_recursion.py::TestRecursion::test_dictrecursion PASSED +test_recursion.py::TestRecursion::test_listrecursion PASSED +test_scanstring.py::TestScanString::test_c_scanstring PASSED +test_scanstring.py::TestScanString::test_issue3623 PASSED +test_scanstring.py::TestScanString::test_overflow PASSED +test_scanstring.py::TestScanString::test_py_scanstring PASSED +test_scanstring.py::TestScanString::test_surrogates PASSED +test_separators.py::TestSeparators::test_separators PASSED +test_speedups.py::TestDecode::test_make_encoder SKIPPED +test_speedups.py::TestDecode::test_make_scanner SKIPPED +test_tool.py::TestTool::test_infile_outfile PASSED +test_tool.py::TestTool::test_infile_stdout PASSED +test_tool.py::TestTool::test_stdin_stdout PASSED +test_tuple.py::TestTuples::test_tuple_array_dump PASSED +test_tuple.py::TestTuples::test_tuple_array_dumps PASSED +test_tuple.py::TestNamedTuple::test_namedtuple_dump PASSED +test_unicode.py::TestUnicode::test_big_unicode_decode PASSED +test_unicode.py::TestUnicode::test_big_unicode_encode PASSED +test_unicode.py::TestUnicode::test_default_encoding PASSED +test_unicode.py::TestUnicode::test_encoding1 PASSED +test_unicode.py::TestUnicode::test_encoding2 PASSED +test_unicode.py::TestUnicode::test_encoding3 PASSED +test_unicode.py::TestUnicode::test_encoding4 PASSED +test_unicode.py::TestUnicode::test_encoding5 PASSED +test_unicode.py::TestUnicode::test_encoding6 PASSED +test_unicode.py::TestUnicode::test_ensure_ascii_false_bytestring_encoding PASSED +test_unicode.py::TestUnicode::test_ensure_ascii_false_returns_unicode PASSED +test_unicode.py::TestUnicode::test_ensure_ascii_linebreak_encoding PASSED +test_unicode.py::TestUnicode::test_ensure_ascii_still_works PASSED +test_unicode.py::TestUnicode::test_invalid_escape_sequences PASSED +test_unicode.py::TestUnicode::test_object_pairs_hook_with_unicode PASSED +test_unicode.py::TestUnicode::test_strip_bom PASSED +test_unicode.py::TestUnicode::test_unicode_decode PASSED +test_unicode.py::TestUnicode::test_unicode_preservation PASSED diff -r 9e076feb8c0b -r c0b8c110b0a8 components/python/simplejson/test/results-3.4-64.master --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/components/python/simplejson/test/results-3.4-64.master Tue Jul 28 09:20:10 2015 -0700 @@ -0,0 +1,121 @@ +platform sunos5 -- Python 3.4.3 -- py-1.4.26 -- pytest-2.6.4 -- /usr/bin/python3.4 +collecting ... collected 173 items +test_bigint_as_string.py::TestBigintAsString::test_dict_keys PASSED +test_bigint_as_string.py::TestBigintAsString::test_dicts PASSED +test_bigint_as_string.py::TestBigintAsString::test_ints PASSED +test_bigint_as_string.py::TestBigintAsString::test_lists PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_dict_keys PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_dicts PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_ints PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_ints_outside_range_fails PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_invalid_counts PASSED +test_bitsize_int_as_string.py::TestBitSizeIntAsString::test_lists PASSED +test_check_circular.py::TestCheckCircular::test_circular_composite PASSED +test_check_circular.py::TestCheckCircular::test_circular_default PASSED +test_check_circular.py::TestCheckCircular::test_circular_dict PASSED +test_check_circular.py::TestCheckCircular::test_circular_list PASSED +test_check_circular.py::TestCheckCircular::test_circular_off_default PASSED +test_decimal.py::TestDecimal::test_decimal_decode PASSED +test_decimal.py::TestDecimal::test_decimal_defaults PASSED +test_decimal.py::TestDecimal::test_decimal_encode PASSED +test_decimal.py::TestDecimal::test_decimal_reload PASSED +test_decimal.py::TestDecimal::test_decimal_roundtrip PASSED +test_decimal.py::TestDecimal::test_stringify_key PASSED +test_decode.py::TestDecode::test_bounds_checking PASSED +test_decode.py::TestDecode::test_decimal PASSED +test_decode.py::TestDecode::test_decoder_optimizations PASSED +test_decode.py::TestDecode::test_empty_objects PASSED +test_decode.py::TestDecode::test_empty_strings PASSED +test_decode.py::TestDecode::test_float PASSED +test_decode.py::TestDecode::test_keys_reuse_str PASSED +test_decode.py::TestDecode::test_keys_reuse_unicode PASSED +test_decode.py::TestDecode::test_object_pairs_hook PASSED +test_decode.py::TestDecode::test_raw_decode PASSED +test_default.py::TestDefault::test_default PASSED +test_dump.py::TestDump::test_accumulator PASSED +test_dump.py::TestDump::test_constants PASSED +test_dump.py::TestDump::test_dump PASSED +test_dump.py::TestDump::test_dumps PASSED +test_dump.py::TestDump::test_encode_truefalse PASSED +test_dump.py::TestDump::test_indent_unknown_type_acceptance PASSED +test_dump.py::TestDump::test_ordered_dict PASSED +test_dump.py::TestDump::test_sort_keys PASSED +test_dump.py::TestDump::test_stringify_key PASSED +test_encode_basestring_ascii.py::TestEncodeBaseStringAscii::test_c_encode_basestring_ascii PASSED +test_encode_basestring_ascii.py::TestEncodeBaseStringAscii::test_py_encode_basestring_ascii PASSED +test_encode_basestring_ascii.py::TestEncodeBaseStringAscii::test_sorted_dict PASSED +test_encode_for_html.py::TestEncodeForHTML::test_basic_encode PASSED +test_encode_for_html.py::TestEncodeForHTML::test_basic_roundtrip PASSED +test_encode_for_html.py::TestEncodeForHTML::test_prevent_script_breakout PASSED +test_errors.py::TestErrors::test_decode_error PASSED +test_errors.py::TestErrors::test_error_is_pickable PASSED +test_errors.py::TestErrors::test_scan_error PASSED +test_errors.py::TestErrors::test_string_keys_error PASSED +test_fail.py::TestFail::test_array_decoder_issue46 PASSED +test_fail.py::TestFail::test_failures PASSED +test_fail.py::TestFail::test_truncated_input PASSED +test_float.py::TestFloat::test_degenerates_allow PASSED +test_float.py::TestFloat::test_degenerates_deny PASSED +test_float.py::TestFloat::test_degenerates_ignore PASSED +test_float.py::TestFloat::test_floats PASSED +test_float.py::TestFloat::test_ints PASSED +test_for_json.py::TestForJson::test_for_json_encodes_dict_subclass PASSED +test_for_json.py::TestForJson::test_for_json_encodes_list PASSED +test_for_json.py::TestForJson::test_for_json_encodes_list_subclass PASSED +test_for_json.py::TestForJson::test_for_json_encodes_list_within_object PASSED +test_for_json.py::TestForJson::test_for_json_encodes_object_nested_in_dict PASSED +test_for_json.py::TestForJson::test_for_json_encodes_object_nested_in_list_within_dict PASSED +test_for_json.py::TestForJson::test_for_json_encodes_object_nested_within_object PASSED +test_for_json.py::TestForJson::test_for_json_encodes_stand_alone_object PASSED +test_for_json.py::TestForJson::test_for_json_ignored_if_not_true_with_dict_subclass PASSED +test_for_json.py::TestForJson::test_for_json_ignored_if_not_true_with_list_subclass PASSED +test_for_json.py::TestForJson::test_raises_typeerror_if_for_json_not_true_with_object PASSED +test_indent.py::TestIndent::test_indent PASSED +test_indent.py::TestIndent::test_indent0 PASSED +test_indent.py::TestIndent::test_separators PASSED +test_item_sort_key.py::TestItemSortKey::test_case PASSED +test_item_sort_key.py::TestItemSortKey::test_simple_first PASSED +test_namedtuple.py::TestNamedTuple::test_asdict_not_callable_dump PASSED +test_namedtuple.py::TestNamedTuple::test_asdict_not_callable_dumps PASSED +test_namedtuple.py::TestNamedTuple::test_namedtuple_dump PASSED +test_namedtuple.py::TestNamedTuple::test_namedtuple_dump_false PASSED +test_namedtuple.py::TestNamedTuple::test_namedtuple_dumps PASSED +test_namedtuple.py::TestNamedTuple::test_namedtuple_dumps_false PASSED +test_pass1.py::TestPass1::test_parse PASSED +test_pass2.py::TestPass2::test_parse PASSED +test_pass3.py::TestPass3::test_parse PASSED +test_recursion.py::TestRecursion::test_defaultrecursion PASSED +test_recursion.py::TestRecursion::test_dictrecursion PASSED +test_recursion.py::TestRecursion::test_listrecursion PASSED +test_scanstring.py::TestScanString::test_c_scanstring PASSED +test_scanstring.py::TestScanString::test_issue3623 PASSED +test_scanstring.py::TestScanString::test_overflow PASSED +test_scanstring.py::TestScanString::test_py_scanstring PASSED +test_scanstring.py::TestScanString::test_surrogates PASSED +test_separators.py::TestSeparators::test_separators PASSED +test_speedups.py::TestDecode::test_make_encoder SKIPPED +test_speedups.py::TestDecode::test_make_scanner SKIPPED +test_tool.py::TestTool::test_infile_outfile PASSED +test_tool.py::TestTool::test_infile_stdout PASSED +test_tool.py::TestTool::test_stdin_stdout PASSED +test_tuple.py::TestTuples::test_tuple_array_dump PASSED +test_tuple.py::TestTuples::test_tuple_array_dumps PASSED +test_tuple.py::TestNamedTuple::test_namedtuple_dump PASSED +test_unicode.py::TestUnicode::test_big_unicode_decode PASSED +test_unicode.py::TestUnicode::test_big_unicode_encode PASSED +test_unicode.py::TestUnicode::test_default_encoding PASSED +test_unicode.py::TestUnicode::test_encoding1 PASSED +test_unicode.py::TestUnicode::test_encoding2 PASSED +test_unicode.py::TestUnicode::test_encoding3 PASSED +test_unicode.py::TestUnicode::test_encoding4 PASSED +test_unicode.py::TestUnicode::test_encoding5 PASSED +test_unicode.py::TestUnicode::test_encoding6 PASSED +test_unicode.py::TestUnicode::test_ensure_ascii_false_bytestring_encoding PASSED +test_unicode.py::TestUnicode::test_ensure_ascii_false_returns_unicode PASSED +test_unicode.py::TestUnicode::test_ensure_ascii_linebreak_encoding PASSED +test_unicode.py::TestUnicode::test_ensure_ascii_still_works PASSED +test_unicode.py::TestUnicode::test_invalid_escape_sequences PASSED +test_unicode.py::TestUnicode::test_object_pairs_hook_with_unicode PASSED +test_unicode.py::TestUnicode::test_strip_bom PASSED +test_unicode.py::TestUnicode::test_unicode_decode PASSED +test_unicode.py::TestUnicode::test_unicode_preservation PASSED