-
Notifications
You must be signed in to change notification settings - Fork 1
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
54dcf96
commit 6548266
Showing
6 changed files
with
38 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
def test_two(builder, two): | ||
builder.test(two, '02-add-subdirectory') | ||
def test_two(params, builder, two): | ||
builder.test(params, *two) | ||
|
||
def test_four(builder, four): | ||
builder.test(four, '04-as-fp') | ||
def test_four(params, builder, four): | ||
builder.test(params, *four) |
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,2 +1,2 @@ | ||
def test_five(builder, five): | ||
builder.test(five, '05-fetch-content') | ||
def test_five(params, builder, five): | ||
builder.test(params, *five) |
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,8 +1,8 @@ | ||
def test_zero(builder, zero): | ||
builder.test(zero, '00-upstream') | ||
def test_zero(params, builder, zero): | ||
builder.test(params, *zero) | ||
|
||
def test_one(builder, one): | ||
builder.test(one, '01-find-package') | ||
def test_one(params, builder, one): | ||
builder.test(params, *one) | ||
|
||
def test_three(builder, three): | ||
builder.test(three, '03-fp-fp') | ||
def test_three(params, builder, three): | ||
builder.test(params, *three) |
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,8 +1,8 @@ | ||
def test_seven(builder, seven): | ||
builder.test(seven, '07-as-fc') | ||
def test_seven(params, builder, seven): | ||
builder.test(params, *seven) | ||
|
||
def test_nine(builder, nine): | ||
builder.test(nine, '09-external-project') | ||
def test_nine(params, builder, nine): | ||
builder.test(params, *nine) | ||
|
||
def test_ten(builder, ten): | ||
builder.test(ten, '10-conan') | ||
def test_ten(params, builder, ten): | ||
builder.test(params, *ten) |
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,8 +1,8 @@ | ||
def test_six(builder, six): | ||
builder.test(six, '06-fp-fc') | ||
def test_six(params, builder, six): | ||
builder.test(params, *six) | ||
|
||
def test_eight(builder, eight): | ||
builder.test(eight, '08-find-module') | ||
def test_eight(params, builder, eight): | ||
builder.test(params, *eight) | ||
|
||
def test_eleven(builder, eleven): | ||
builder.test(eleven, '11-no-cupcake') | ||
def test_eleven(params, builder, eleven): | ||
builder.test(params, *eleven) |