Navigation Menu

Skip to content

Commit

Permalink
[eclectus]
Browse files Browse the repository at this point in the history
- use petite on win32

git-svn-id: https://svn.parrot.org/parrot/trunk@26962 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
  • Loading branch information
fperrad committed Apr 13, 2008
1 parent d4b9a8f commit ea695ba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion languages/eclectus/t/harness
Expand Up @@ -30,7 +30,9 @@ use lib qw( ../lib ../../lib ../../lib );

use Parrot::Test::Harness
language => 'eclectus',
exec => [ 'gosh', '-fcase-fold', '-I', '.', '-l', 'gauche/prelude.scm' ],
exec => ($^O eq 'MSWin32')
? [ 'petite', '--script' ]
: [ 'gosh', '-fcase-fold', '-I', '.', '-l', 'gauche/prelude.scm' ],
#exec => [ 'guile', '--debug', '-l', 'guile/prelude.scm', '-s' ],
files => [ 't/*.pl' ];

Expand Down

0 comments on commit ea695ba

Please sign in to comment.