-
Notifications
You must be signed in to change notification settings - Fork 381
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update tests given now-caught errors that were previously uncaught
- Loading branch information
1 parent
c3c9d8b
commit e200253
Showing
10 changed files
with
23 additions
and
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Uncaught error: Module imports form a cycle: A.B -> A.B | ||
Error: Module imports form a cycle: A.B -> A.B |
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,3 +1,3 @@ | ||
. ../../../testutils.sh | ||
|
||
idris2 --build cyclic.ipkg | ||
idris2 --build cyclic.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 | ||
|
||
idris2 --build testpkg.ipkg | ||
idris2 --build testpkg.ipkg 2>&1 | ||
rm -rf build/ | ||
idris2 --build testpkg.ipkg --quiet | ||
idris2 --build testpkg.ipkg --verbose | ||
idris2 --build testpkg.ipkg --codegen gambit | ||
idris2 --build testpkg.ipkg --ide-mode | ||
idris2 --build malformed-package-name | ||
idris2 --build non-existent-package.ipkg | ||
idris2 --build testpkg.ipkg --quiet 2>&1 | ||
idris2 --build testpkg.ipkg --verbose 2>&1 | ||
idris2 --build testpkg.ipkg --codegen gambit 2>&1 | ||
idris2 --build testpkg.ipkg --ide-mode 2>&1 | ||
idris2 --build malformed-package-name 2>&1 | ||
idris2 --build non-existent-package.ipkg 2>&1 | ||
rm -rf build/ |
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,7 +1,7 @@ | ||
Uncaught error: EmptyFC:Failed to resolve the dependencies for test3: | ||
Error: Failed to resolve the dependencies for test3: | ||
required foo >= 0.4 && < 0.5 but no matching version is installed | ||
|
||
Uncaught error: EmptyFC:Failed to resolve the dependencies for test4: | ||
Error: Failed to resolve the dependencies for test4: | ||
required baz any but no matching version is installed | ||
|
||
Warning: Deprecation warning: version numbers must now be of the form x.y.z |
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,14 +1,12 @@ | ||
Uncaught error: Error: Unrecognised property "depend". | ||
Error: Unrecognised property "depend". | ||
|
||
"bad.ipkg":2:1--2:7 | ||
1 | package bad | ||
2 | depend = contrib | ||
^^^^^^ | ||
|
||
Uncaught error: Error: Expected string. | ||
Error: Expected string. | ||
|
||
"bad2.ipkg":2:13--2:16 | ||
1 | package bad | ||
2 | sourcedir = src | ||
^^^ | ||
|
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 --build bad.ipkg | ||
idris2 --build bad2.ipkg | ||
idris2 --build bad.ipkg 2>&1 | ||
idris2 --build bad2.ipkg 2>&1 |