-
Notifications
You must be signed in to change notification settings - Fork 366
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5004 from AltGr/tests-autoupd
Some new tests, and auto-update after package def
- Loading branch information
Showing
16 changed files
with
93 additions
and
150 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
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
N0REP0 | ||
### :::::: removal of partial dependencies (#4727) | ||
### <pkg:a.1> | ||
opam-version: "2.0" | ||
### <pkg:b.1> | ||
opam-version: "2.0" | ||
### <pkg:c.1> | ||
opam-version: "2.0" | ||
depends: "a" | "b" | ||
### opam switch create default --empty | ||
### opam install a b c | ||
The following actions will be performed: | ||
- install b 1 | ||
- install a 1 | ||
- install c 1 | ||
===== 3 to install ===== | ||
|
||
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> | ||
-> installed a.1 | ||
-> installed b.1 | ||
-> installed c.1 | ||
Done. | ||
### opam remove a --show | ||
The following actions would be performed: | ||
- remove a 1 | ||
- recompile c 1 [uses a] | ||
===== 1 to recompile | 1 to remove ===== | ||
### opam remove --auto --show | ||
Nothing to do. | ||
### opam remove a --auto --show | ||
The following actions would be performed: | ||
- remove c 1 [uses a] | ||
- remove a 1 | ||
===== 2 to remove ===== | ||
### :::::: message on removal of an unavailable package (#4890) | ||
### <pkg:z.1> | ||
opam-version: "2.0" | ||
available: false | ||
### <pkg:w.1> | ||
opam-version: "2.0" | ||
depends: "z" | ||
### opam remove z | ||
[ERROR] z: unmet availability conditions: 'false' | ||
# Return code 5 # | ||
### opam remove w | ||
[NOTE] w is not installed. | ||
|
||
Nothing to do. |
Oops, something went wrong.