Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

skip syntax errors in t/01-stmts.t, improve INSTALL #22

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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