Here are some notes for those that are interested in parrot being built
on other platforms.
The system in question is a PA-RISC HP-UX 11.11 system
(hppa2.0w-hp-hpux11.11). The system only has the bundled C compiler and
linker, so I've compiled gcc 3.3.6 for it. gcc cannot create debug
information without gas, which is unfortunately not supported on this
platform.
I also built Perl from source:
intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=12345678
d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=12
ivtype='long long', ivsize=8, nvtype='double', nvsize=8,
Off_t='off_t', lseeksize=8
alignbytes=8, prototype=define
In Parrot's config.h I've got:
#define INTVAL_SIZE 4
#define NUMVAL_SIZE 8
#define OPCODE_T_SIZE 4
#define PTR_SIZE 4
#define SHORT_SIZE 2
#define INT_SIZE 4
#define LONG_SIZE 4
#define HUGEINTVAL_SIZE 8
#define DOUBLE_SIZE 8
Here are a few niggles:
* *Lots* of this warning in the ops:
ops/experimental.ops:285: warning: cast increases required
alignment of target type
* ld keeps being run with -g which is not a valid flag
* A warning is generated from cpp about the line in config.h as it
contains a slash.
#define PARROT_9000/800 1
* Had trouble with nci_test.o, so commented out from Makefile as a
quick hack
* Had trouble building dynclasses (flag/symbol problems)
Disabled for now
I've attached the result of a 'make test'. A number of tests fail
because I didn't compile the dynclasses or nci_test.o.
A large numer of failures are Aborts/Memory faults. Are these related to
the alignment problems raised by the compiler? Should I be overriding
something in the Configure script?
(Perhaps as a side effect of this?) I'm also seeing 'l != left'
assertions in mmd.c.
If there's any other information I can provide, feel free to ask!
Cheers,
Nick
perl t/harness --gc-debug --running-make-test t/library/*.t t/op/*.t t/pmc/*.t
t/native_pbc/*.t imcc/t/*/*.t t/dynclass/*.t t/src/*.t t/perl/*.t
t/library/dumper...............
# Failed test (t/library/dumper.t at line 216)
# got: '"hash1" => PerlHash {
# }
# "hash1" => PerlHash {
# "hello" => "world"
# }
# "hash1" => PerlHash {
# "hello" => "world",
# "hello2" => "world2"
# }
# sh: 14950 Memory fault(coredump)
# '
# expected: '"hash1" => PerlHash {
# }
# "hash1" => PerlHash {
# "hello" => "world"
# }
# "hash1" => PerlHash {
# "hello" => "world",
# "hello2" => "world2"
# }
# "hash1" => PerlHash {
# "hash2" => PerlHash {
# },
# "hello" => "world",
# "hello2" => "world2"
# }
# "hash1" => PerlHash {
# "hash2" => PerlHash {
# "hello3" => "world3"
# },
# "hello" => "world",
# "hello2" => "world2"
# }
# "hash1" => PerlHash {
# "hash2" => PerlHash {
# "array1" => PerlArray (size:5) [
# "this",
# "is",
# "a",
# "test",
# PerlHash {
# "is" => "cool",
# "name" => "parrot"
# }
# ],
# "hello3" => "world3"
# },
# "hello" => "world",
# "hello2" => "world2"
# }
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/library/dumper_6.pir"' failed
with exit code 139
# Failed test (t/library/dumper.t at line 352)
# got: '"hash" => PerlHash {
# sh: 14958 Memory fault(coredump)
# '
# expected: '"hash" => PerlHash {
# | "hash2" => PerlHash {
# | | "array" => PerlArray (size:2) [
# | | | 1,
# | | | PerlArray (size:1) [
# | | | | "test"
# | | | ]
# | | ],
# | | "test2" => "test2"
# | },
# | "test1" => "test1"
# } with-properties: PerlHash {
# | "array2" => \hash["hash2"]["array"][1]
# }
# "hash" => PerlHash {
# | "hash2" => PerlHash {
# | | "array" => PerlArray (size:2) [
# | | | 1,
# | | | PerlArray (size:1) [
# | | | | "test"
# | | | ]
# | | ],
# | | "test2" => "test2"
# | },
# | "test1" => "test1"
# } with-properties: PerlHash {
# | "array2" => \hash["hash2"]["array"][1]
# }
# name = 'hash'
# indent = '| '
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/library/dumper_8.pir"' failed
with exit code 139
# Failed test (t/library/dumper.t at line 638)
# got: '"hash1" => Hash {
# }
# "hash1" => Hash {
# "hello" => "world"
# }
# "hash1" => Hash {
# "hello" => "world",
# "hello2" => "world2"
# }
# sh: 14992 Memory fault(coredump)
# '
# expected: '"hash1" => Hash {
# }
# "hash1" => Hash {
# "hello" => "world"
# }
# "hash1" => Hash {
# "hello" => "world",
# "hello2" => "world2"
# }
# "hash1" => Hash {
# "hash2" => Hash {
# },
# "hello" => "world",
# "hello2" => "world2"
# }
# "hash1" => Hash {
# "hash2" => Hash {
# "hello3" => "world3"
# },
# "hello" => "world",
# "hello2" => "world2"
# }
# "hash1" => Hash {
# "hash2" => Hash {
# "array1" => PerlArray (size:5) [
# "this",
# "is",
# "a",
# "test",
# Hash {
# "is" => "cool",
# "name" => "parrot"
# }
# ],
# "hello3" => "world3"
# },
# "hello" => "world",
# "hello2" => "world2"
# }
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/library/dumper_15.pir"'
failed with exit code 139
# Looks like you failed 3 tests of 26.
dubious
Test returned status 3 (wstat 768, 0x300)
DIED. FAILED tests 6, 8, 15
Failed 3/26 tests, 88.46% okay
t/library/getopt_long..........
# Failed test (t/library/getopt_long.t at line 24)
# got: 'Assertion failed: l != left, file src/mmd.c, line 737
# sh: 15041 Abort(coredump)
# '
# expected: 'getopt_long.t 0.01
# This is just a test.
# You have passed the option '--bool'.
# You have passed the option '--string'. The value is 'asdf'.
# You have passed the option '--integer'. The value is '42'.
# You have passed the additional argument: 'some'.
# You have passed the additional argument: 'thing'.
# All args have been parsed.
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/library/getopt_long_1.pir"'
failed with exit code 134
# Looks like you failed 1 test of 1.
dubious
Test returned status 1 (wstat 256, 0x100)
DIED. FAILED test 1
Failed 1/1 tests, 0.00% okay
t/library/md5..................ok
t/library/parrotlib............
# Failed test (t/library/parrotlib.t at line 88)
# got: 'libnci_test.sl
# '
# expected: 'runtime/parrot/dynext/libnci_test.sl
# '
# Looks like you failed 1 test of 6.
dubious
Test returned status 1 (wstat 256, 0x100)
DIED. FAILED test 5
Failed 1/6 tests, 83.33% okay
t/library/pcre.................ok
1/1 skipped: no pcre-config
t/library/pge..................ok
t/library/sort.................
# Failed test (t/library/sort.t at line 23)
# got: 'sh: 15111 Memory fault(coredump)
# '
# expected: '0
# 1
# 2
# 3
# 4
# 5
# 6
# 7
# 8
# 9
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/library/sort_1.pir"' failed
with exit code 139
# Failed test (t/library/sort.t at line 70)
# got: 'sh: 15115 Memory fault(coredump)
# '
# expected: '0
# 1
# 2
# 3
# 4
# 5
# 6
# 7
# 8
# 9
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/library/sort_2.pir"' failed
with exit code 139
# Failed test (t/library/sort.t at line 116)
# got: 'sh: 15119 Memory fault(coredump)
# '
# expected: '0
# 1
# 2
# 3
# 4
# 5
# 6
# 7
# 8
# 9
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/library/sort_3.pir"' failed
with exit code 139
# Failed test (t/library/sort.t at line 163)
# got: 'sh: 15123 Memory fault(coredump)
# '
# expected: 'alpha
# bravo
# charlie
# delta
# echo
# foxtrot
# golf
# hotel
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/library/sort_4.pir"' failed
with exit code 139
# Failed test (t/library/sort.t at line 206)
# got: 'sh: 15127 Memory fault(coredump)
# '
# expected: 'alpha
# bravo
# charlie
# delta
# echo
# foxtrot
# golf
# hotel
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/library/sort_5.pir"' failed
with exit code 139
# Failed test (t/library/sort.t at line 249)
# got: 'sh: 15131 Memory fault(coredump)
# '
# expected: '0
# 0
# 0.100000
# 0.200000
# 0.300000
# 0.400000
# 0.500000
# 1
# 2
# 3
# 4
# 5
# alpha
# bravo
# charlie
# delta
# echo
# foxtrot
# golf
# hotel
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/library/sort_6.pir"' failed
with exit code 139
# Failed test (t/library/sort.t at line 316)
# got: 'sh: 15135 Memory fault(coredump)
# '
# expected: 'h
# w
# x
# y
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/library/sort_7.pir"' failed
with exit code 139
# Failed test (t/library/sort.t at line 351)
# got: 'sh: 15139 Memory fault(coredump)
# '
# expected: 'h
# w
# x
# y
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/library/sort_8.pir"' failed
with exit code 139
# Failed test (t/library/sort.t at line 397)
# got: 'sh: 15143 Memory fault(coredump)
# '
# expected: 'aaaa1
# aaaa2
# bbb
# bbbbbb
# hash2
# hello
# hello2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/library/sort_9.pir"' failed
with exit code 139
# Looks like you failed 9 tests of 9.
dubious
Test returned status 9 (wstat 2304, 0x900)
DIED. FAILED tests 1-9
Failed 9/9 tests, 0.00% okay
t/library/streams..............ok
t/library/yaml_parser_syck.....ok
t/op/00ff-dos..................ok
t/op/00ff-unix.................ok
t/op/64bit.....................skipped
all skipped: 64bit INTVAL platforms only
t/op/arithmetics...............ok
t/op/basic.....................ok
t/op/bitwise...................ok
t/op/calling...................ok
t/op/comp......................ok
t/op/conv......................ok
t/op/debuginfo.................ok
3/8 skipped: getline/setline changes not finished
t/op/gc........................ok
t/op/globals...................ok
t/op/hacks.....................ok
2/2 skipped: no universal SIGFPE handling
t/op/ifunless..................ok
t/op/info......................ok
t/op/integer...................ok
t/op/interp....................ok
t/op/jit.......................
# Failed test (t/op/jit.t at line 976)
# got: 'Assertion failed: l != left, file src/mmd.c, line 684
# sh: 16492 Abort(coredump)
# '
# expected: 'ok 1
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/op/jit_54.pasm"' failed with
exit code 134
# Looks like you failed 1 test of 60.
dubious
Test returned status 1 (wstat 256, 0x100)
DIED. FAILED test 54
Failed 1/60 tests, 98.33% okay
t/op/jitn......................ok
t/op/lexicals..................
# Failed test (t/op/lexicals.t at line 110)
# got: '3 before sub2
# 2 before sub2
# sh: 16586 Memory fault(coredump)
# '
# expected: '3 before sub2
# 2 before sub2
# 1 before sub2
# 1 = foo after sub2
# -1 = bar after sub2
# 2 = foo after sub2
# 0 = bar after sub2
# 3 = foo after sub2
# 1 = bar after sub2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/op/lexicals_4.pasm"' failed
with exit code 139
# Looks like you failed 1 test of 14.
dubious
Test returned status 1 (wstat 256, 0x100)
DIED. FAILED test 4
Failed 1/14 tests, 92.86% okay
t/op/literal...................ok
t/op/macro.....................ok
1/18 skipped: Await exceptions
t/op/number....................ok
t/op/random....................ok
t/op/rx........................ok
1/23 skipped: Pending some sort of lowercasing op
t/op/spawnw....................ok
t/op/stacks....................ok
3/56 skipped: no stack limit currently
t/op/string....................ok
7/156 skipped: various reasons
t/op/string_cclass.............ok
t/op/string_cs.................ok
t/op/stringu...................ok
t/op/time......................ok
t/op/trans.....................ok
t/op/types.....................ok
t/pmc/array....................ok
t/pmc/bigint...................skipped
all skipped: No BigInt Lib configured
t/pmc/boolean..................ok
t/pmc/builtin..................ok
t/pmc/complex..................
# Failed test (t/pmc/complex.t at line 580)
# got: 'sh: 18295 Memory fault(coredump)
# '
# expected: 'ok1
# ok2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/complex_16.pasm"' failed
with exit code 139
# Failed test (t/pmc/complex.t at line 715)
# got: 'sh: 18327 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/complex_24.pasm"' failed
with exit code 139
# Looks like you failed 2 tests of 26.
dubious
Test returned status 2 (wstat 512, 0x200)
DIED. FAILED tests 16, 24
Failed 2/26 tests, 92.31% okay
t/pmc/config...................ok
t/pmc/coroutine................
# Failed test (t/pmc/coroutine.t at line 370)
# got: '0 0
# Assertion failed: l != left, file src/mmd.c, line 631
# sh: 18366 Abort(coredump)
# '
# expected: '0 0
# 1 0
# 2 0
# 3 0
# 4 0
# 5 0
# 6 0
# 7 0
# 8 0
# 9 0
# 10 0
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/coroutine_6.pir"' failed
with exit code 134
# Failed test (t/pmc/coroutine.t at line 608)
# got: 'Assertion failed: l != left, file src/mmd.c, line 631
# sh: 18390 Abort(coredump)
# '
# expected: '01234'
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/coroutine_12.pir"' failed
with exit code 134
# Looks like you failed 2 tests of 13.
dubious
Test returned status 2 (wstat 512, 0x200)
DIED. FAILED tests 6, 12
Failed 2/13 tests, 84.62% okay (less 2 skipped tests: 9 okay, 69.23%)
t/pmc/delegate.................ok
t/pmc/env......................ok
1/9 skipped: no native unsetenv
t/pmc/eval.....................ok
t/pmc/exception................ok
t/pmc/fixedbooleanarray........ok
t/pmc/fixedfloatarray..........ok
t/pmc/fixedintegerarray........ok
t/pmc/fixedpmcarray............
# Failed test (t/pmc/fixedpmcarray.t at line 295)
# 'sh: 18806 Memory fault(coredump)
# '
# doesn't match '(?-xism:ok 1
# 1 2 5 9 10 x
# compares: 0
# ok 1
# 1 2 5 9 10 x
# compares: [1-9]\d*)'
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/fixedpmcarray_10.pir"'
failed with exit code 139
# Looks like you failed 1 test of 13.
dubious
Test returned status 1 (wstat 256, 0x100)
DIED. FAILED test 10
Failed 1/13 tests, 92.31% okay
t/pmc/fixedstringarray.........ok
t/pmc/float....................
# Failed test (t/pmc/float.t at line 482)
# got: 'Assertion failed: l != left, file src/mmd.c, line 631
# sh: 18936 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_16.pasm"' failed
with exit code 134
# Failed test (t/pmc/float.t at line 503)
# got: 'Assertion failed: l != left, file src/mmd.c, line 631
# sh: 18940 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_17.pasm"' failed
with exit code 134
# Failed test (t/pmc/float.t at line 524)
# got: 'Assertion failed: l != left, file src/mmd.c, line 631
# sh: 18944 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_18.pasm"' failed
with exit code 134
# Failed test (t/pmc/float.t at line 552)
# got: 'Assertion failed: l != left, file src/mmd.c, line 631
# sh: 18948 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_19.pasm"' failed
with exit code 134
# Failed test (t/pmc/float.t at line 573)
# got: 'Assertion failed: l != left, file src/mmd.c, line 684
# sh: 18952 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_20.pasm"' failed
with exit code 134
# Failed test (t/pmc/float.t at line 594)
# got: 'Assertion failed: l != left, file src/mmd.c, line 684
# sh: 18956 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_21.pasm"' failed
with exit code 134
# Failed test (t/pmc/float.t at line 615)
# got: 'Assertion failed: l != left, file src/mmd.c, line 684
# sh: 18960 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_22.pasm"' failed
with exit code 134
# Failed test (t/pmc/float.t at line 643)
# got: 'Assertion failed: l != left, file src/mmd.c, line 684
# sh: 18964 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_23.pasm"' failed
with exit code 134
# Failed test (t/pmc/float.t at line 721)
# got: 'sh: 18976 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# ok 4
# ok 5
# ok 6
# ok 7
# ok 8
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_26.pasm"' failed
with exit code 139
# Failed test (t/pmc/float.t at line 795)
# got: 'sh: 18984 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_28.pasm"' failed
with exit code 139
# Failed test (t/pmc/float.t at line 851)
# got: 'sh: 18992 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_30.pasm"' failed
with exit code 139
# Failed test (t/pmc/float.t at line 905)
# got: 'sh: 19000 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_32.pasm"' failed
with exit code 139
# Failed test (t/pmc/float.t at line 959)
# got: 'sh: 19008 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_34.pasm"' failed
with exit code 139
# Failed test (t/pmc/float.t at line 1013)
# got: 'sh: 19016 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_36.pasm"' failed
with exit code 139
# Failed test (t/pmc/float.t at line 1065)
# got: 'sh: 19024 Memory fault(coredump)
# '
# expected: '0
# -1
# 1
# 0
# -1
# 1
# 0
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_38.pasm"' failed
with exit code 139
# Failed test (t/pmc/float.t at line 1113)
# got: 'sh: 19028 Memory fault(coredump)
# '
# expected: '0
# 0
# 1
# 1
# 0
# 0
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_39.pasm"' failed
with exit code 139
# Failed test (t/pmc/float.t at line 1156)
# got: 'sh: 19032 Memory fault(coredump)
# '
# expected: '0
# 1
# 1
# 1
# 0
# 1
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_40.pasm"' failed
with exit code 139
# Failed test (t/pmc/float.t at line 1199)
# got: 'sh: 19036 Memory fault(coredump)
# '
# expected: '1
# 0
# 0
# 0
# 1
# 0
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_41.pasm"' failed
with exit code 139
# Failed test (t/pmc/float.t at line 1242)
# got: 'sh: 19040 Memory fault(coredump)
# '
# expected: '1
# 1
# 0
# 0
# 1
# 1
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_42.pasm"' failed
with exit code 139
# Failed test (t/pmc/float.t at line 1285)
# got: '1
# sh: 19044 Memory fault(coredump)
# '
# expected: '1
# 0
# 1
# 0
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_43.pasm"' failed
with exit code 139
# Failed test (t/pmc/float.t at line 1316)
# got: '0
# sh: 19048 Memory fault(coredump)
# '
# expected: '0
# 1
# 0
# 1
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/float_44.pasm"' failed
with exit code 139
# Looks like you failed 21 tests of 44.
dubious
Test returned status 21 (wstat 5376, 0x1500)
DIED. FAILED tests 16-23, 26, 28, 30, 32, 34, 36, 38-44
Failed 21/44 tests, 52.27% okay
t/pmc/floatvalarray............ok
t/pmc/freeze...................ok
t/pmc/globals..................ok
t/pmc/hash.....................
# Failed test (t/pmc/hash.t at line 543)
# got: 'ok 1
# sh: 19264 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# ok 4
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/hash_14.pasm"' failed
with exit code 139
# Looks like you failed 1 test of 36.
dubious
Test returned status 1 (wstat 256, 0x100)
DIED. FAILED test 14
Failed 1/36 tests, 97.22% okay
t/pmc/integer..................
# Failed test (t/pmc/integer.t at line 22)
# got: '0
# 1
# Assertion failed: l != left, file src/mmd.c, line 631
# sh: 19357 Abort(coredump)
# '
# expected: '0
# 1
# 2
# 3
# 4
# 5
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/integer_1.pir"' failed
with exit code 134
# Looks like you failed 1 test of 11.
dubious
Test returned status 1 (wstat 256, 0x100)
DIED. FAILED test 1
Failed 1/11 tests, 90.91% okay
t/pmc/intlist..................ok
t/pmc/io.......................ok
1/31 skipped: clone not finished yet
t/pmc/iter.....................ok
1/41 skipped: N/Y: length of rest of array
t/pmc/key......................ok
t/pmc/managedstruct............ok
t/pmc/mmd......................ok
t/pmc/multiarray...............ok
t/pmc/multisub.................ok
t/pmc/n_arithmetics............ok
t/pmc/namespace................ok
t/pmc/nci......................Can't use string ("Test::Builder") as a HASH ref
while "strict refs" in use at lib/Test/Builder.pm line 304.
# Looks like your test died before it could output anything.
dubious
Test returned status 255 (wstat 65280, 0xff00)
DIED. FAILED tests 1-56
Failed 56/56 tests, 0.00% okay
t/pmc/object-meths.............ok
1/28 skipped: currently broken
t/pmc/objects..................ok
t/pmc/orderedhash..............ok
1/22 skipped: Mixing keyed & indexed access is broken - see ticket 33641
t/pmc/perlarray................ok
t/pmc/perlhash.................
# Failed test (t/pmc/perlhash.t at line 424)
# got: 'ok 1
# sh: 20618 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# ok 4
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlhash_13.pasm"' failed
with exit code 139
# Looks like you failed 1 test of 37.
dubious
Test returned status 1 (wstat 256, 0x100)
DIED. FAILED test 13
Failed 1/37 tests, 97.30% okay (less 1 skipped test: 35 okay, 94.59%)
t/pmc/perlint..................
# Failed test (t/pmc/perlint.t at line 276)
# got: 'Assertion failed: l != left, file src/mmd.c, line 631
# sh: 20759 Abort(coredump)
# '
# expected: 'ok 1
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_12.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlint.t at line 319)
# got: 'Assertion failed: l != left, file src/mmd.c, line 631
# sh: 20772 Abort(coredump)
# '
# expected: '255
# 12
# 15
# 129
# 28
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_15.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlint.t at line 363)
# got: 'Assertion failed: l != left, file src/mmd.c, line 631
# sh: 20776 Abort(coredump)
# '
# expected: '231
# 15
# 0
# 126
# 172
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_16.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlint.t at line 407)
# got: 'Assertion failed: l != left, file src/mmd.c, line 631
# sh: 20780 Abort(coredump)
# '
# expected: '136
# 29
# 12
# 12
# 100
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_17.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlint.t at line 451)
# got: 'Assertion failed: l != left, file src/mmd.c, line 631
# sh: 20784 Abort(coredump)
# '
# expected: '85
# 153
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_18.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlint.t at line 474)
# got: 'Assertion failed: l != left, file src/mmd.c, line 631
# sh: 20788 Abort(coredump)
# '
# expected: '85
# 153
# 240
# 204
# 255
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_19.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlint.t at line 524)
# got: '6
# 3
# 10
# 5
# Assertion failed: l != left, file src/mmd.c, line 631
# sh: 20792 Abort(coredump)
# '
# expected: '6
# 3
# 10
# 5
# 6
# 5
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_20.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlint.t at line 571)
# got: '24
# 48
# 40
# 80
# Assertion failed: l != left, file src/mmd.c, line 631
# sh: 20796 Abort(coredump)
# '
# expected: '24
# 48
# 40
# 80
# 24
# 80
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_21.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlint.t at line 635)
# got: '6
# 3
# Assertion failed: l != left, file src/mmd.c, line 631
# sh: 20804 Abort(coredump)
# '
# expected: '6
# 3
# 1.500000
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_23.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlint.t at line 799)
# got: '-3877
# -3877
# Assertion failed: l != left, file src/mmd.c, line 631
# sh: 20852 Abort(coredump)
# '
# expected: '-3877
# -3877
# -1
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_35.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlint.t at line 820)
# got: '492000
# 492000
# Assertion failed: l != left, file src/mmd.c, line 631
# sh: 20856 Abort(coredump)
# '
# expected: '492000
# 492000
# -492000
# 0
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_36.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlint.t at line 845)
# got: 'Assertion failed: l != left, file src/mmd.c, line 631
# sh: 20860 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_37.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlint.t at line 872)
# got: 'ok 1
# ok 2
# Assertion failed: l != left, file src/mmd.c, line 684
# sh: 20864 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_38.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlint.t at line 899)
# got: 'ok 1
# ok 2
# Assertion failed: l != left, file src/mmd.c, line 684
# sh: 20868 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_39.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlint.t at line 926)
# got: '492004.920000
# 492004.920000
# Assertion failed: l != left, file src/mmd.c, line 684
# sh: 20872 Abort(coredump)
# '
# expected: '492004.920000
# 492004.920000
# 306
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_40.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlint.t at line 950)
# got: 'Assertion failed: l != left, file src/mmd.c, line 684
# sh: 20876 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_41.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlint.t at line 980)
# got: '4123
# 4123
# Assertion failed: l != left, file src/mmd.c, line 631
# sh: 20880 Abort(coredump)
# '
# expected: '4123
# 4123
# 4143
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_42.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlint.t at line 1463)
# got: 'ok 1
# sh: 20944 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# ok 4
# ok 5
# ok 6
# ok 7
# ok 8
# ok 9
# ok 10
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_58.pasm"' failed
with exit code 139
# Failed test (t/pmc/perlint.t at line 1593)
# got: 'ok 1
# sh: 20952 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# ok 4
# ok 5
# ok 6
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_60.pasm"' failed
with exit code 139
# Failed test (t/pmc/perlint.t at line 1653)
# got: 'ok 1
# sh: 20956 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# ok 4
# ok 5
# ok 6
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_61.pasm"' failed
with exit code 139
# Failed test (t/pmc/perlint.t at line 1741)
# got: 'ok 1
# sh: 20964 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# ok 4
# ok 5
# ok 6
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_63.pasm"' failed
with exit code 139
# Failed test (t/pmc/perlint.t at line 1835)
# got: 'ok 1
# sh: 20972 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# ok 4
# ok 5
# ok 6
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_65.pasm"' failed
with exit code 139
# Failed test (t/pmc/perlint.t at line 1888)
# got: 'ok 1
# sh: 20976 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# ok 4
# ok 5
# ok 6
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlint_66.pasm"' failed
with exit code 139
# Looks like you failed 23 tests of 70.
dubious
Test returned status 23 (wstat 5888, 0x1700)
DIED. FAILED tests 12, 15-21, 23, 35-42, 58, 60-61, 63, 65-66
Failed 23/70 tests, 67.14% okay
t/pmc/perlnum..................
# Failed test (t/pmc/perlnum.t at line 689)
# got: 'ok 1
# Assertion failed: l != left, file src/mmd.c, line 631
# sh: 21133 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlnum_35.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlnum.t at line 711)
# got: 'ok 1
# Assertion failed: l != left, file src/mmd.c, line 684
# sh: 21137 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlnum_36.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlnum.t at line 732)
# got: 'ok 1
# Assertion failed: l != left, file src/mmd.c, line 631
# sh: 21141 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlnum_37.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlnum.t at line 754)
# got: 'ok 1
# Assertion failed: l != left, file src/mmd.c, line 684
# sh: 21145 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlnum_38.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlnum.t at line 775)
# got: 'ok 1
# Assertion failed: l != left, file src/mmd.c, line 631
# sh: 21149 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlnum_39.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlnum.t at line 797)
# got: 'ok 1
# Assertion failed: l != left, file src/mmd.c, line 684
# sh: 21153 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlnum_40.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlnum.t at line 818)
# got: 'ok 1
# Assertion failed: l != left, file src/mmd.c, line 631
# sh: 21157 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlnum_41.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlnum.t at line 840)
# got: 'ok 1
# Assertion failed: l != left, file src/mmd.c, line 684
# sh: 21161 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlnum_42.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlnum.t at line 899)
# got: 'ok 1
# sh: 21173 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlnum_45.pasm"' failed
with exit code 139
# Looks like you failed 9 tests of 54.
dubious
Test returned status 9 (wstat 2304, 0x900)
DIED. FAILED tests 35-42, 45
Failed 9/54 tests, 83.33% okay
t/pmc/perlstring...............
# Failed test (t/pmc/perlstring.t at line 727)
# got: 'Assertion failed: l != left, file src/mmd.c, line 737
# sh: 21286 Abort(coredump)
# '
# expected: 'ok 1
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlstring_19.pasm"'
failed with exit code 134
# Failed test (t/pmc/perlstring.t at line 1215)
# got: '0
# sh: 21382 Memory fault(coredump)
# '
# expected: '0
# 1
# -1
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlstring_43.pasm"'
failed with exit code 139
# Failed test (t/pmc/perlstring.t at line 1244)
# got: '0
# sh: 21386 Memory fault(coredump)
# '
# expected: '0
# 1
# -1
# 1
# -1
# 0
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlstring_44.pasm"'
failed with exit code 139
# Failed test (t/pmc/perlstring.t at line 1352)
# got: 'ok 1
# ok 2
# sh: 21406 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# ok 4
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlstring_49.pasm"'
failed with exit code 139
# Failed test (t/pmc/perlstring.t at line 1430)
# got: 'ok 1
# sh: 21418 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# ok 4
# ok 5
# ok 6
# ok 7
# ok 8
# ok 9
# ok 10
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlstring_52.pasm"'
failed with exit code 139
# Failed test (t/pmc/perlstring.t at line 1803)
# got: 'ok 1
# sh: 21450 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# ok 4
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlstring_61.pasm"'
failed with exit code 139
# Failed test (t/pmc/perlstring.t at line 1883)
# got: 'ok 1
# sh: 21458 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# ok 4
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlstring_63.pasm"'
failed with exit code 139
# Looks like you failed 7 tests of 68.
dubious
Test returned status 7 (wstat 1792, 0x700)
DIED. FAILED tests 19, 43-44, 49, 52, 61, 63
Failed 7/68 tests, 89.71% okay (less 1 skipped test: 60 okay, 88.24%)
t/pmc/perlundef................
# Failed test (t/pmc/perlundef.t at line 252)
# got: '10
# -20
# 0
# Assertion failed: l != left, file src/mmd.c, line 631
# sh: 21507 Abort(coredump)
# '
# expected: '10
# -20
# 0
# 0
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlundef_7.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlundef.t at line 284)
# got: 'ok 1
# ok 2
# ok 3
# Assertion failed: l != left, file src/mmd.c, line 684
# sh: 21511 Abort(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# ok 4
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlundef_8.pasm"' failed
with exit code 134
# Failed test (t/pmc/perlundef.t at line 332)
# got: 'Assertion failed: l != left, file src/mmd.c, line 631
# sh: 21519 Abort(coredump)
# '
# expected: '15
# 240
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/perlundef_10.pasm"'
failed with exit code 134
# Looks like you failed 3 tests of 10.
dubious
Test returned status 3 (wstat 768, 0x300)
DIED. FAILED tests 7-8, 10
Failed 3/10 tests, 70.00% okay
t/pmc/pmc......................
# Failed test (t/pmc/pmc.t at line 319)
# got: 'Assertion failed: l != left, file src/mmd.c, line 631
# sh: 21560 Abort(coredump)
# '
# expected: '15
# 240
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/pmc_10.pasm"' failed with
exit code 134
# Failed test (t/pmc/pmc.t at line 337)
# got: 'Assertion failed: l != left, file src/mmd.c, line 631
# sh: 21564 Abort(coredump)
# '
# expected: '0
# 0
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/pmc_11.pasm"' failed with
exit code 134
# Looks like you failed 2 tests of 24.
dubious
Test returned status 2 (wstat 512, 0x200)
DIED. FAILED tests 10-11
Failed 2/24 tests, 91.67% okay
t/pmc/prop.....................ok
t/pmc/ref......................ok
t/pmc/resizablebooleanarray....ok
t/pmc/resizablefloatarray......ok
t/pmc/resizableintegerarray....ok
t/pmc/resizablepmcarray........
# Failed test (t/pmc/resizablepmcarray.t at line 365)
# got: 'sh: 21910 Memory fault(coredump)
# '
# expected: '1 2 5 9 10 x
# '
# './parrot --gc-debug
"/home/nickg/src/parrot/t/pmc/resizablepmcarray_14.pir"' failed with exit code
139
# Looks like you failed 1 test of 23.
dubious
Test returned status 1 (wstat 256, 0x100)
DIED. FAILED test 14
Failed 1/23 tests, 95.65% okay
t/pmc/resizablestringarray.....ok
t/pmc/sarray...................ok
t/pmc/scratchpad...............ok
t/pmc/signal...................
# Failed test (t/pmc/signal.t at line 87)
# got: 'start
# sh: 22191 Hangup
# '
# expected: 'start
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/signal_1.pasm"' failed
with exit code 129
# Failed test (t/pmc/signal.t at line 101)
# got: 'start
# sh: 22198 Hangup
# '
# expected: 'start
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/signal_2.pasm"' failed
with exit code 129
# Looks like you failed 2 tests of 3.
dubious
Test returned status 2 (wstat 512, 0x200)
DIED. FAILED tests 1-2
Failed 2/3 tests, 33.33% okay (less 1 skipped test: 0 okay, 0.00%)
t/pmc/string...................
# Failed test (t/pmc/string.t at line 527)
# got: '0
# sh: 22255 Memory fault(coredump)
# '
# expected: '0
# 1
# -1
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/string_12.pasm"' failed
with exit code 139
# Failed test (t/pmc/string.t at line 556)
# got: 'sh: 22259 Memory fault(coredump)
# '
# expected: '0
# 1
# -1
# 1
# -1
# 0
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/string_13.pasm"' failed
with exit code 139
# Failed test (t/pmc/string.t at line 639)
# got: 'ok 1
# ok 2
# sh: 22275 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# ok 4
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/string_17.pasm"' failed
with exit code 139
# Failed test (t/pmc/string.t at line 717)
# got: 'ok 1
# sh: 22287 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# ok 4
# ok 5
# ok 6
# ok 7
# ok 8
# ok 9
# ok 10
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/string_20.pasm"' failed
with exit code 139
# Failed test (t/pmc/string.t at line 1042)
# got: 'ok 1
# sh: 22315 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# ok 4
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/string_28.pasm"' failed
with exit code 139
# Failed test (t/pmc/string.t at line 1077)
# got: 'ok 1
# sh: 22319 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# ok 3
# ok 4
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/string_29.pasm"' failed
with exit code 139
# Looks like you failed 6 tests of 34.
dubious
Test returned status 6 (wstat 1536, 0x600)
DIED. FAILED tests 12-13, 17, 20, 28-29
Failed 6/34 tests, 82.35% okay (less 1 skipped test: 27 okay, 79.41%)
t/pmc/sub......................
# Failed test (t/pmc/sub.t at line 657)
# got: 'ok 1
# sh: 22425 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/sub_21.pasm"' failed with
exit code 139
# Failed test (t/pmc/sub.t at line 685)
# got: 'ok 1
# sh: 22429 Memory fault(coredump)
# '
# expected: 'ok 1
# ok 2
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/sub_22.pasm"' failed with
exit code 139
# Looks like you failed 2 tests of 51.
dubious
Test returned status 2 (wstat 512, 0x200)
DIED. FAILED tests 21-22
Failed 2/51 tests, 96.08% okay
t/pmc/sys......................ok
t/pmc/threads..................
# Failed test (t/pmc/threads.t at line 198)
# got: 'sh: 22579 Memory fault(coredump)
# '
# expected: '500500
# 500500
# '
# './parrot --gc-debug "/home/nickg/src/parrot/t/pmc/threads_5.pir"' failed
with exit code 139
# Looks like you failed 1 test of 11.
dubious
Test returned status 1 (wstat 256, 0x100)
DIED. FAILED test 5
Failed 1/11 tests, 90.91% okay (less 2 skipped tests: 8 okay, 72.73%)
t/pmc/timer....................ok
t/pmc/tqueue...................ok
t/pmc/undef....................ok
t/native_pbc/integer...........ok
t/native_pbc/number............ok
t/native_pbc/string............ok
1/1 skipped: string changes
imcc/t/imcpasm/cfg.............ok
imcc/t/imcpasm/opt0............ok
imcc/t/imcpasm/opt1............
# Failed test (imcc/t/imcpasm/opt1.t at line 572)
# got: '# IMCC does produce b0rken PASM files
# # see http://[EMAIL PROTECTED]/rt3/Ticket/Display.html?id=32392
# 1
# 2
# 3
# 402999f0 4025bd28
# 4
# 5
# 6
# _main:
# end
# '
# expected: '# IMCC does produce b0rken PASM files
# # see http://[EMAIL PROTECTED]/rt3/Ticket/Display.html?id=32392
# _main:
# end
# '
# Failed test (imcc/t/imcpasm/opt1.t at line 655)
# got: '# IMCC does produce b0rken PASM files
# # see http://[EMAIL PROTECTED]/rt3/Ticket/Display.html?id=32392
# 1
# 2
# 3
# 402999f0 4025bd28
# 4
# 5
# 6
# _main:
# end
# '
# expected: '# IMCC does produce b0rken PASM files
# # see http://[EMAIL PROTECTED]/rt3/Ticket/Display.html?id=32392
# _main:
# end
# '
# Failed test (imcc/t/imcpasm/opt1.t at line 794)
# got: '# IMCC does produce b0rken PASM files
# # see http://[EMAIL PROTECTED]/rt3/Ticket/Display.html?id=32392
# 1
# 2
# 3
# 402999f0 4025bd28
# 4
# 5
# 6
# _main:
# end
# '
# expected: '# IMCC does produce b0rken PASM files
# # see http://[EMAIL PROTECTED]/rt3/Ticket/Display.html?id=32392
# _main:
# end
# '
# Failed test (imcc/t/imcpasm/opt1.t at line 849)
# got: '# IMCC does produce b0rken PASM files
# # see http://[EMAIL PROTECTED]/rt3/Ticket/Display.html?id=32392
# 1
# 2
# 3
# 402999f0 4025bd28
# 4
# 5
# 6
# _main:
# end
# '
# expected: '# IMCC does produce b0rken PASM files
# # see http://[EMAIL PROTECTED]/rt3/Ticket/Display.html?id=32392
# _main:
# end
# '
# Failed test (imcc/t/imcpasm/opt1.t at line 890)
# got: '# IMCC does produce b0rken PASM files
# # see http://[EMAIL PROTECTED]/rt3/Ticket/Display.html?id=32392
# 1
# 2
# 3
# 40299a68 4025bd28
# 4
# 5
# 6
# _main:
# end
# '
# expected: '# IMCC does produce b0rken PASM files
# # see http://[EMAIL PROTECTED]/rt3/Ticket/Display.html?id=32392
# _main:
# end
# '
# Failed test (imcc/t/imcpasm/opt1.t at line 917)
# got: '# IMCC does produce b0rken PASM files
# # see http://[EMAIL PROTECTED]/rt3/Ticket/Display.html?id=32392
# 1
# 2
# 3
# 402999f0 4025bd28
# 4
# 5
# 6
# _main:
# end
# '
# expected: '# IMCC does produce b0rken PASM files
# # see http://[EMAIL PROTECTED]/rt3/Ticket/Display.html?id=32392
# _main:
# end
# '
# Failed test (imcc/t/imcpasm/opt1.t at line 958)
# got: '# IMCC does produce b0rken PASM files
# # see http://[EMAIL PROTECTED]/rt3/Ticket/Display.html?id=32392
# 1
# 2
# 3
# 40299a68 4025bd28
# 4
# 5
# 6
# _main:
# end
# '
# expected: '# IMCC does produce b0rken PASM files
# # see http://[EMAIL PROTECTED]/rt3/Ticket/Display.html?id=32392
# _main:
# end
# '
# Looks like you failed 7 tests of 70.
dubious
Test returned status 7 (wstat 1792, 0x700)
DIED. FAILED tests 38, 44, 54, 58, 61, 63, 66
Failed 7/70 tests, 90.00% okay (less 1 skipped test: 62 okay, 88.57%)
imcc/t/imcpasm/opt2............ok
5/5 skipped: -O2 disabled
imcc/t/imcpasm/optc............ok
6/6 skipped: PCC changes
imcc/t/imcpasm/pcc.............ok
10/11 skipped: PCC changes
imcc/t/imcpasm/sub.............ok
imcc/t/reg/spill...............ok
imcc/t/syn/bsr.................ok
imcc/t/syn/clash...............ok
imcc/t/syn/const...............ok
imcc/t/syn/eval................ok
7/7 skipped: changed eval semantics - see t/pmc/eval.t
imcc/t/syn/file................ok
1/12 skipped: multiple loading not speced - failing
imcc/t/syn/keyed...............ok
1/1 skipped: experimental
imcc/t/syn/labels..............ok
imcc/t/syn/macro...............ok
imcc/t/syn/namespace...........ok
imcc/t/syn/objects.............ok
imcc/t/syn/op..................ok
imcc/t/syn/pcc.................
# Failed test (imcc/t/syn/pcc.t at line 611)
# got: '3
# Assertion failed: l != left, file src/mmd.c, line 631
# sh: 23580 Abort(coredump)
# '
# expected: '3
# 2
# 1
# 0
# caught it!
# '
# './parrot --gc-debug "/home/nickg/src/parrot/imcc/t/syn/pcc_16.pir"' failed
with exit code 134
# Looks like you failed 1 test of 47.
dubious
Test returned status 1 (wstat 256, 0x100)
DIED. FAILED test 16
Failed 1/47 tests, 97.87% okay (less 1 skipped test: 45 okay, 95.74%)
imcc/t/syn/pod.................ok
imcc/t/syn/scope...............ok
imcc/t/syn/tail................ok
<SNIP PYTHON/NCI>
t/src/basic....................ok
t/src/compiler.................ok
t/src/cppcomments..............ok
t/src/exit.....................ok
t/src/extend...................ok
t/src/hash.....................ok
1/10 skipped: changed this useless dump format
t/src/intlist..................ok
t/src/io.......................ok
t/src/list.....................ok
t/src/manifest.................<SNIP>
t/src/sprintf..................ok
t/src/string...................ok
1/1 skipped: Pending Unicode
t/perl/Parrot_Distribution.....ok
t/perl/Parrot_Docs.............ok
t/perl/Parrot_IO...............ok
Failed 33/151 test scripts, 78.15% okay. 216/2486 subtests failed, 91.31% okay.
Failed Test Stat Wstat Total Fail Failed List of Failed
-------------------------------------------------------------------------------
imcc/t/imcpasm/opt1.t 7 1792 70 7 10.00% 38 44 54 58 61 63 66
imcc/t/syn/pcc.t 1 256 47 1 2.13% 16
t/dynclass/foo.t 8 2048 9 8 88.89% 1-5 7-9
t/dynclass/pybuiltin.t 5 1280 6 5 83.33% 1-2 4-6
t/dynclass/pyclass.t 6 1536 6 6 100.00% 1-6
t/dynclass/pycomplex.t 2 512 2 2 100.00% 1-2
t/dynclass/pyfunc.t 4 1024 4 4 100.00% 1-4
t/dynclass/pyint.t 25 6400 26 25 96.15% 1-25
t/library/dumper.t 3 768 26 3 11.54% 6 8 15
t/library/getopt_long.t 1 256 1 1 100.00% 1
t/library/parrotlib.t 1 256 6 1 16.67% 5
t/library/sort.t 9 2304 9 9 100.00% 1-9
t/op/jit.t 1 256 60 1 1.67% 54
t/op/lexicals.t 1 256 14 1 7.14% 4
t/pmc/complex.t 2 512 26 2 7.69% 16 24
t/pmc/coroutine.t 2 512 13 2 15.38% 6 12
t/pmc/fixedpmcarray.t 1 256 13 1 7.69% 10
t/pmc/float.t 21 5376 44 21 47.73% 16-23 26 28 30 32 34
36 38-44
t/pmc/hash.t 1 256 36 1 2.78% 14
t/pmc/integer.t 1 256 11 1 9.09% 1
t/pmc/nci.t 255 65280 56 112 200.00% 1-56
t/pmc/perlhash.t 1 256 37 1 2.70% 13
t/pmc/perlint.t 23 5888 70 23 32.86% 12 15-21 23 35-42 58
60-61 63 65-66
t/pmc/perlnum.t 9 2304 54 9 16.67% 35-42 45
t/pmc/perlstring.t 7 1792 68 7 10.29% 19 43-44 49 52 61 63
t/pmc/perlundef.t 3 768 10 3 30.00% 7-8 10
t/pmc/pmc.t 2 512 24 2 8.33% 10-11
t/pmc/resizablepmcarray.t 1 256 23 1 4.35% 14
t/pmc/signal.t 2 512 3 2 66.67% 1-2
t/pmc/string.t 6 1536 34 6 17.65% 12-13 17 20 28-29
t/pmc/sub.t 2 512 51 2 3.92% 21-22
t/pmc/threads.t 1 256 11 1 9.09% 5
t/src/manifest.t 1 256 5 1 20.00% 3
3 tests and 69 subtests skipped.
make: *** [test] Error 25