~ubuntu-branches/ubuntu/raring/parrot/raring-proposed

« back to all changes in this revision

Viewing changes to t/op/exceptions.t

  • Committer: Bazaar Package Importer
  • Author(s): Allison Randal
  • Date: 2011-07-30 18:45:03 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20110730184503-34d4mprtfx6pt5h3
Tags: 3.6.0-1
* New upstream release
* debian/watch:
  - Modified regular expression to capture numbered directory name
    (patch from Dominique Dumont).
* debian/rules:
  - Split build-arch and build-indep, resolving lintian warning.
  - Update path to pbc_disassemble for manpage generation (patch
    from Dominique Dumont).
* debian/patches:
  - Added patch 02_fix_perl_interpreter_path.patch, resolving
    lintian warnings.
* debian/control:
  - Added DM-Upload-Allowed field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
397
397
# stringification is handled by a vtable, which runs in a second
398
398
# runloop. when an error in the method tries to go to a Error_Handler defined
399
399
# outside it, it winds up going to the inner runloop, giving strange results.
400
 
pir_output_is( <<'CODE', <<'OUTPUT', 'pop_eh out of context (2)', todo => 'runloop shenanigans' );
 
400
pir_output_is( <<'CODE', <<'OUTPUT', 'pop_eh out of context (2)' );
401
401
.sub main :main
402
402
        $P0 = get_hll_global ['Foo'], 'load'
403
403
        $P0()
409
409
        .return()
410
410
 
411
411
catch:
 
412
        .get_results ($P1)
 
413
        finalize $P1
412
414
        say "caught"
413
415
        .return()
414
416
.end