-
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
fa7fc47
commit c9ed4e9
Showing
6 changed files
with
51 additions
and
18 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,7 +1,21 @@ | ||
Error: Failed to resolve the dependencies for test3: | ||
required foo >= 0.4 && < 0.5 but no matching version is installed | ||
Required foo >= 0.4 && < 0.5 but no matching version is installed. | ||
|
||
Searched for packages in: | ||
[...]/tests/idris2/pkg/pkg006/depends | ||
[...]/tests/idris2/pkg/pkg006/prefix/idris2-0.7.0 | ||
[...]/build/env/idris2-0.7.0 | ||
|
||
For more details on what packages Idris2 can locate, run `idris2 --list-packages` | ||
|
||
Error: Failed to resolve the dependencies for test4: | ||
required baz any but no matching version is installed | ||
Required baz any but no matching version is installed. | ||
|
||
Searched for packages in: | ||
[...]/tests/idris2/pkg/pkg006/depends | ||
[...]/tests/idris2/pkg/pkg006/prefix/idris2-0.7.0 | ||
[...]/build/env/idris2-0.7.0 | ||
|
||
For more details on what packages Idris2 can locate, run `idris2 --list-packages` | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
Error: Failed to resolve the dependencies for test: | ||
foo-0.2.0; baz-0.3.0; required quux any but no matching version is installed | ||
foo-0.2.0; baz-0.2.0; bar-0.1.1; required baz < 0.2.0 but assigned version 0.2.0 which is out of bounds | ||
foo-0.2.0; baz-0.2.0; bar-0.1.0; required prz > 0.1.0 but no matching version is installed | ||
foo-0.1.0; required baz < 0.1.0 but no matching version is installed | ||
Required quux any but no matching version is installed. Resolved transitive dependencies: foo-0.2.0; baz-0.3.0. | ||
Required baz < 0.2.0 but only found version 0.2.0 which is out of bounds. Resolved transitive dependencies: foo-0.2.0; baz-0.2.0; bar-0.1.1. | ||
Required prz > 0.1.0 but no matching version is installed. Resolved transitive dependencies: foo-0.2.0; baz-0.2.0; bar-0.1.0. | ||
Required baz < 0.1.0 but no matching version is installed. Resolved transitive dependencies: foo-0.1.0. | ||
|
||
Searched for packages in: | ||
[...]/tests/idris2/pkg/pkg015/depends | ||
[...]/tests/idris2/pkg/pkg015/prefix/idris2-0.7.0 | ||
[...]/build/env/idris2-0.7.0 | ||
|
||
For more details on what packages Idris2 can locate, run `idris2 --list-packages` | ||
|
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,10 @@ | ||
. ../../../testutils.sh | ||
|
||
windows_tweaks() { | ||
sed 's#C:.msys64##' | sed 's#\\#/#g' | ||
} | ||
|
||
# pretend Idris2 is installed at root for reproducible | ||
# installdirs: | ||
IDRIS2_PREFIX=/ idris2 --dump-installdir test.ipkg \ | ||
| windows_tweaks | ||
| windows_path_tweaks | ||
|
||
# by contrast, the location containing all installed packages: | ||
IDRIS2_PREFIX=/ idris2 --libdir \ | ||
| windows_tweaks | ||
| windows_path_tweaks |
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