-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow
@glob
goals to be parameterized #155
- Loading branch information
Showing
2 changed files
with
87 additions
and
7 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,16 +1,80 @@ | ||
|
||
$ ./$MAKESURE -f tests/29_glob_plus_pg_1.sh -l | ||
| Available goals: | ||
| g1 | ||
| g2 | ||
| g3 | ||
| gpg@hello | ||
| gpg@hi | ||
| g3pg@salut | ||
| gpg@salut | ||
|
||
$ ./$MAKESURE -f tests/29_glob_plus_pg_1.sh g1 | ||
| goal 'gpg@glob_test/1.txt@hello' ... | ||
| glob_test/1.txt hello | ||
| goal 'gpg@glob_test/2.txt@hello' ... | ||
| glob_test/2.txt hello | ||
| goal 'gpg@hello' [empty]. | ||
| goal 'g1' [empty]. | ||
|
||
$ ./$MAKESURE -f tests/29_glob_plus_pg_1.sh g2 | ||
| goal 'gpg@glob_test/1.txt@hello' ... | ||
| glob_test/1.txt hello | ||
| goal 'gpg@glob_test/2.txt@hello' ... | ||
| glob_test/2.txt hello | ||
| goal 'gpg@hello' [empty]. | ||
| goal 'gpg@glob_test/1.txt@hi' ... | ||
| glob_test/1.txt hi | ||
| goal 'gpg@glob_test/2.txt@hi' ... | ||
| glob_test/2.txt hi | ||
| goal 'gpg@hi' [empty]. | ||
| goal 'g2' [empty]. | ||
|
||
$ ./$MAKESURE -f tests/29_glob_plus_pg_1.sh g3 | ||
| goal 'gpg@glob_test/1.txt@salut' ... | ||
| glob_test/1.txt salut | ||
| goal 'gpg@glob_test/2.txt@salut' ... | ||
| glob_test/2.txt salut | ||
| goal 'gpg@salut' [empty]. | ||
| goal 'g3pg@salut' [empty]. | ||
| goal 'g3' [empty]. | ||
|
||
$ ./$MAKESURE -f tests/29_glob_plus_pg_2.sh -l | ||
| Available goals: | ||
| g1 | ||
| g2 | ||
| g3 | ||
| 'glob_test/*.txt@hello' | ||
| 'glob_test/*.txt@hi' | ||
| g3pg@salut | ||
| 'glob_test/*.txt@salut' | ||
|
||
$ ./$MAKESURE -f tests/29_glob_plus_pg_2.sh g1 | ||
| goal 'glob_test/1.txt@hello' ... | ||
| glob_test/1.txt hello | ||
| goal 'glob_test/2.txt@hello' ... | ||
| glob_test/2.txt hello | ||
| goal 'glob_test/*.txt@hello' [empty]. | ||
| goal 'g1' [empty]. | ||
|
||
$ ./$MAKESURE -f tests/29_glob_plus_pg_2.sh g2 | ||
| goal 'glob_test/1.txt@hello' ... | ||
| glob_test/1.txt hello | ||
| goal 'glob_test/2.txt@hello' ... | ||
| glob_test/2.txt hello | ||
| goal 'glob_test/*.txt@hello' [empty]. | ||
| goal 'glob_test/1.txt@hi' ... | ||
| glob_test/1.txt hi | ||
| goal 'glob_test/2.txt@hi' ... | ||
| glob_test/2.txt hi | ||
| goal 'glob_test/*.txt@hi' [empty]. | ||
| goal 'g2' [empty]. | ||
|
||
$ ./$MAKESURE -f tests/29_glob_plus_pg_2.sh g3 | ||
| goal 'glob_test/1.txt@salut' ... | ||
| glob_test/1.txt salut | ||
| goal 'glob_test/2.txt@salut' ... | ||
| glob_test/2.txt salut | ||
| goal 'glob_test/*.txt@salut' [empty]. | ||
| goal 'g3pg@salut' [empty]. | ||
| goal 'g3' [empty]. |