Skip to content

Commit e889b29

Browse files
authored
Merge pull request #473 from perl6/W4anD0eR96-patch-1
Enable HLL test 01-language.t
2 parents 57b3fed + 879f293 commit e889b29

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

t/hll/01-language.t

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
1-
#! nqp
1+
#!/usr/bin/env nqp
22

3-
say("1..0 # Skipped: design changes, need re-work");
4-
5-
#use NQPHLL;
6-
#
7-
#plan(2);
8-
#
9-
#ok( nqp::getcomp('parrot') ~~ HLL::Compiler, 'compreg for Parrot returns a HLL::Compiler' );
10-
#ok( nqp::getcomp('parrot').language eq 'parrot', '.language gives "parrot"' );
3+
use NQPHLL;
4+
plan(2);
115

6+
ok( nqp::getcomp('nqp') ~~ HLL::Compiler, 'compreg for NQP returns a HLL::Compiler' );
7+
ok( nqp::getcomp('nqp').language eq 'nqp', '.language gives "nqp"' );

0 commit comments

Comments
 (0)