-
Notifications
You must be signed in to change notification settings - Fork 380
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ec74792
commit 826b7eb
Showing
17 changed files
with
118 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
File error in DoesntExist.idr: File Not Found | ||
|
||
Error loading file "DoesntExist.idr": File Not Found | ||
|
||
Main> Bye for now! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
File error in nothere.idr: File Not Found | ||
|
||
Error loading file "nothere.idr": File Not Found | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Error: Expected at most one input file but was given: repl, pkg.ipkg | ||
Did you mean to type "--repl"? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
. ../../../testutils.sh | ||
|
||
# it is common to hear about folks doing this by accident when they mean | ||
# to do `idris2 --repl pkg.ipkg`. | ||
idris2 repl pkg.ipkg 2>&1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
. ../../../testutils.sh | ||
|
||
check Issue710a.idr || true | ||
check Issue710b.idr || true | ||
check Issue710c.idr || true | ||
check Issue710d.idr || true | ||
check Issue710e.idr || true | ||
check Issue710f.idr || true | ||
check Issue710a.idr 2>&1 || true | ||
check Issue710b.idr 2>&1 || true | ||
check Issue710c.idr 2>&1 || true | ||
check Issue710d.idr 2>&1 || true | ||
check Issue710e.idr 2>&1 || true | ||
check Issue710f.idr 2>&1 || true | ||
|
||
check Issue1224a.idr || true | ||
check Issue1224b.idr || true | ||
check Issue1224a.idr 2>&1 || true | ||
check Issue1224b.idr 2>&1 || true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
. ../../../testutils.sh | ||
|
||
check Issue1345.idr || true | ||
check Issue1496-1.idr || true | ||
check Issue1496-2.idr || true | ||
check Issue1345.idr 2>&1 || true | ||
check Issue1496-1.idr 2>&1 || true | ||
check Issue1496-2.idr 2>&1 || true | ||
idris2 --build foo.ipkg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
Uncaught error: Error: Module imports form a cycle: Cycle2 -> Cycle1 -> Cycle1 | ||
Uncaught error: Error: Module imports form a cycle: Loop -> Loop | ||
Error: Module imports form a cycle: Cycle2 -> Cycle1 -> Cycle1 | ||
Error: Module imports form a cycle: Loop -> Loop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
. ../../../testutils.sh | ||
|
||
idris2 Cycle1.idr | ||
idris2 Loop.idr | ||
idris2 2>&1 Cycle1.idr | ||
idris2 2>&1 Loop.idr |