Skip to content

Commit

Permalink
skip syntax errors in t/01-stmts.t, improve INSTALL
Browse files Browse the repository at this point in the history
  • Loading branch information
Reini Urban committed Jun 16, 2014
1 parent 3d2bb80 commit 5903c6b
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 20 deletions.
15 changes: 13 additions & 2 deletions INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,18 @@ make install

git clone git://github.com/parrot/cardinal.git

4) Install Cardinal
4) Build Cardinal

cd cardinal
parrot setup.pir
winxed setup.winxed build

5) Test Cardinal

winxed setup.winxed test

or just:
find t -name \*.t --exec parrot cardinal.pbc '{}' \;

5) Install Cardinal

winxed setup.winxed install
36 changes: 18 additions & 18 deletions t/01-stmts.t
Original file line number Diff line number Diff line change
Expand Up @@ -94,22 +94,22 @@ puts "ok 16"
puts "not ok 17"

# failed
(
-
1
)
puts "ok 18"
#(
#-
#1
#)
puts "not ok 18"

# failed
(
-
1
)
puts "ok 19"
#(
#-
# 1
#)
puts "not ok 19"

# failed
( - 1 )
puts "ok 20"
#( - 1 )
puts "not ok 20"

(1.0)
puts "ok 21"
Expand All @@ -118,22 +118,22 @@ puts "ok 21"
puts "ok 22"

# failed
(%W(a b c))
puts "ok 23"
#(%W(a b c))
puts "not ok 23"

({})
puts "ok 24"

# failed
(//)
puts "ok 25"
#(//)
puts "not ok 25"

("")
puts "ok 26"

# failed
(%Q())
puts "ok 27"
#(%Q())
puts "not ok 27"

(true)
puts "ok 28"
Expand Down

0 comments on commit 5903c6b

Please sign in to comment.