-
Notifications
You must be signed in to change notification settings - Fork 139
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 #2211 from Skgland/file-based-cli-tests
fix missing .pl file for singleton test case and move .pl files under `<testcase>.in/`
- Loading branch information
Showing
13 changed files
with
15 additions
and
8 deletions.
There are no files selected for viewing
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
tests/scryer/cli/issues/do_not_duplicate_path_components.stdin
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,3 +1,3 @@ | ||
['tests/scryer/cli/issues/do_not_duplicate_path_components.pl']. | ||
['tests/scryer/cli/issues/do_not_duplicate_path_components.pl']. | ||
['throw_e.pl']. | ||
['throw_e.pl']. | ||
halt. |
File renamed without changes.
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 @@ | ||
# issue 820 | ||
args = ["-f", "--no-add-history", "-g", "test,halt", "tests/scryer/cli/issues/goals.pl"] | ||
args = ["-f", "--no-add-history", "-g", "test,halt", "goals.pl"] |
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,3 @@ | ||
test :- write(world), nl. | ||
|
||
:- initialization(write(hello)). |
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 @@ | ||
# issue 820 | ||
args = ["-f", "--no-add-history", "-g", "test", "-g", "halt", "tests/scryer/cli/issues/goals.pl"] | ||
args = ["-f", "--no-add-history", "-g", "test", "-g", "halt", "goals.pl"] |
File renamed without changes.
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 @@ | ||
# issue 841 | ||
args = ["-f", "--no-add-history", "tests/scryer/cli/issues/occurs_check_flag.pl"] | ||
args = ["-f", "--no-add-history", "occurs_check_example.pl"] |
File renamed without changes.
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 @@ | ||
# issue 839 | ||
args = ["-f", "--no-add-history", "tests/scryer/cli/issues/op3.pl", "-g", "halt"] | ||
args = ["-f", "--no-add-history", "op3.pl", "-g", "halt"] |
4 changes: 4 additions & 0 deletions
4
tests/scryer/cli/issues/singleton_warning.in/singleton_example.pl
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,4 @@ | ||
% hello | ||
% line! | ||
|
||
a :- b(X). |
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 @@ | ||
['tests/scryer/cli/issues/issue812-singleton-warning.pl']. | ||
['singleton_example.pl']. | ||
halt. |
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 @@ | ||
Warning: singleton variables X at line 4 of issue812-singleton-warning.pl | ||
Warning: singleton variables X at line 4 of singleton_example.pl | ||
true. |