Skip to content

Commit e578211

Browse files
Renamed test packages
1 parent 6d0a49a commit e578211

File tree

36 files changed

+21
-21
lines changed

36 files changed

+21
-21
lines changed

test/integration/tests/717-sdist-test/Main.hs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ main = do
77
-- keep old behavior
88
stack ["sdist"]
99
-- successful sdist with --test-tarball
10-
stack ["sdist", "packageb", "--test-tarball"]
10+
stack ["sdist", "package-with-working-th", "--test-tarball"]
1111
-- fails because package contains TH which depends on files which are not put into sdist tarball
12-
stackErr ["sdist", "packagea", "--test-tarball"]
12+
stackErr ["sdist", "package-with-th", "--test-tarball"]
1313
-- same, but inside a subdir
14-
stackErr ["sdist", "packagecd/packagec", "--test-tarball"]
14+
stackErr ["sdist", "subdirs/failing-in-subdir", "--test-tarball"]
1515
-- depends on packagea and packagec - these would fail if they were the target of sdist,
1616
-- but since they are just dependencies, the operation should succeed
17-
stack ["sdist", "packagecd/packaged", "--test-tarball"]
17+
stack ["sdist", "subdirs/dependent-on-failing-packages", "--test-tarball"]
1818
-- fails because a test depends on files which are not put into sdist tarball
19-
stackErr ["sdist", "packagee", "--test-tarball"]
19+
stackErr ["sdist", "package-with-failing-test", "--test-tarball"]
File renamed without changes.

test/integration/tests/717-sdist-test/files/packagee/packagee.cabal renamed to test/integration/tests/717-sdist-test/files/package-with-failing-test/package-with-failing-test.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: packagee
1+
name: package-with-failing-test
22
version: 0.1.0.0
33
synopsis: Some package
44
description: Some package
File renamed without changes.

0 commit comments

Comments
 (0)