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

[ test ] fix pkgs test failures #3085

Closed
wants to merge 1 commit into from
Closed
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
4 changes: 2 additions & 2 deletions tests/idris2/pkg/pkg016/bar.ipkg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package bar
package two
sourcedir = "bar"
modules = Bar
depends = foo
depends = one
4 changes: 2 additions & 2 deletions tests/idris2/pkg/pkg016/baz.ipkg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package baz
package three
sourcedir = "baz"
modules = Baz
depends = bar
depends = two
2 changes: 1 addition & 1 deletion tests/idris2/pkg/pkg016/foo.ipkg
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package foo
package one
sourcedir = "foo"
modules = Foo
6 changes: 3 additions & 3 deletions tests/idris2/pkg/pkg016/run
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ idris2 --build test.ipkg

build/exec/test

rm -r "${IDRIS2_PREFIX}"/idris2-*/foo-0
rm -r "${IDRIS2_PREFIX}"/idris2-*/bar-0
rm -r "${IDRIS2_PREFIX}"/idris2-*/baz-0
rm -r "${IDRIS2_PREFIX}"/idris2-*/one-0
rm -r "${IDRIS2_PREFIX}"/idris2-*/two-0
rm -r "${IDRIS2_PREFIX}"/idris2-*/three-0
2 changes: 1 addition & 1 deletion tests/idris2/pkg/pkg016/test.ipkg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package test
sourcedir = "src"
modules = Test
depends = baz
depends = three
main = Test
executable = test
Loading