Skip to content
This repository has been archived by the owner on Jun 9, 2018. It is now read-only.

Commit

Permalink
fix build after ops_massacre
Browse files Browse the repository at this point in the history
  • Loading branch information
fperrad committed May 28, 2010
1 parent d15e945 commit da7b4a6
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 4 deletions.
10 changes: 6 additions & 4 deletions t/helpers.pir
Expand Up @@ -40,9 +40,10 @@
cmd .= " "
cmd .= params
L3:
$P0 = open cmd, 'rp'
$P0 = new 'FileHandle'
$P0.'open'(cmd, 'rp')
$S0 = $P0.'readall'()
close $P0
$P0.'close'()
is($S0, expected, desc)
.end

Expand Down Expand Up @@ -86,9 +87,10 @@
cmd .= " "
cmd .= params
L3:
$P0 = open cmd, 'rp'
$P0 = new 'FileHandle'
$P0.'open'(cmd, 'rp')
$S0 = $P0.'readall'()
close $P0
$P0.'close'()
like($S0, pattern, desc)
.end

Expand Down
1 change: 1 addition & 0 deletions wmls2pbc.pir
Expand Up @@ -18,6 +18,7 @@ wmlsd, wmls2pir, wmlsi
=cut

.HLL 'wmlscript'
.loadlib 'io_ops'

.sub 'main' :main
.param pmc argv
Expand Down
1 change: 1 addition & 0 deletions wmls2pir.pir
Expand Up @@ -18,6 +18,7 @@ wmlsd, wmls2pbc, wmlsi
=cut

.HLL 'wmlscript'
.loadlib 'io_ops'

.sub 'main' :main
.param pmc argv
Expand Down
1 change: 1 addition & 0 deletions wmlscript/WMLScript.pir
Expand Up @@ -2,6 +2,7 @@
# $Id$

.HLL 'wmlscript'
.loadlib 'io_ops'
.loadlib 'wmls_group'
.loadlib 'wmls_ops'

Expand Down
2 changes: 2 additions & 0 deletions wmlscript/library/wmlsfloat.pir
Expand Up @@ -15,8 +15,10 @@ See "WMLScript Standard Libraries Specification", section 8 "Float".
=cut

.HLL 'wmlscript'
.loadlib 'io_ops'
.loadlib 'wmls_group'
.loadlib 'wmls_ops'
.loadlib 'trans_ops'


.sub 'getFloat'
Expand Down
1 change: 1 addition & 0 deletions wmlsd.pir
Expand Up @@ -18,6 +18,7 @@ parrot-wmlsi
=cut

.HLL 'wmlscript'
.loadlib 'io_ops'

.sub 'main' :main
.param pmc argv
Expand Down
1 change: 1 addition & 0 deletions wmlsi.pir
Expand Up @@ -19,6 +19,7 @@ parrot-wmlsd
=cut

.HLL 'wmlscript'
.loadlib 'io_ops'

.sub 'main' :main
.param pmc argv
Expand Down

0 comments on commit da7b4a6

Please sign in to comment.