-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix unintentionally invalid filename escaping test
- Loading branch information
1 parent
df7753e
commit ee8aee4
Showing
7 changed files
with
14 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
testdata/":2:1 Unexpected end of file. | ||
|
||
|
||
|
||
|
||
{ } |
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 +1,2 @@ | ||
// This file is there only for its filename: to test escaping in imports | ||
{} |
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 @@ | ||
testdata/':2:1 Unexpected end of file. | ||
|
||
|
||
|
||
|
||
{ } |
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 +1,2 @@ | ||
// This file is there only for its filename: to test escaping in imports | ||
{} |
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,6 @@ | ||
testdata/".jsonnet:2:1 Unexpected end of file. | ||
|
||
|
||
|
||
|
||
[ | ||
true, | ||
true, | ||
"// This file is there only for its filename: to test escaping in imports\n{}\n", | ||
"// This file is there only for its filename: to test escaping in imports\n{}\n" | ||
] |
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,6 +1,6 @@ | ||
[ | ||
import "\u0074rue.jsonnet", | ||
import '\u0074rue.jsonnet', | ||
import @""".jsonnet", | ||
import @'''.jsonnet', | ||
importstr @""".jsonnet", | ||
importstr @'''.jsonnet', | ||
] |
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,6 +1,6 @@ | ||
[ | ||
"true\n", | ||
"true\n", | ||
"// This file is there only for its filename: to test escaping in imports\n", | ||
"// This file is there only for its filename: to test escaping in imports\n" | ||
"// This file is there only for its filename: to test escaping in imports\n{}\n", | ||
"// This file is there only for its filename: to test escaping in imports\n{}\n" | ||
] |