Skip to content

Commit

Permalink
fix cctests
Browse files Browse the repository at this point in the history
  • Loading branch information
anonrig committed May 6, 2024
1 parent 7505902 commit f388eec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/cctest/test_node_task_runner.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ TEST_F(TaskRunnerTest, EscapeShell) {
{"test", "test"},
{"test words", "\"test words\""},
{"$1", "\"$1\""},
{"\"$1\"", "\"\"$1\"\""},
{"\"$1\"", "\"\"\"$1\"\"\""},
{"'$1'", "\"'$1'\""},
{"\\$1", "\"\\$1\""},
{"--arg=\"$1\"", "\"--arg=\"$1\"\""},
{"--arg=node exec -c \"$1\"", "\"--arg=node exec -c \"$1\"\""},
{"--arg=\"$1\"", "\"--arg=\"\"$1\"\"\""},
{"--arg=node exec -c \"$1\"", "\"--arg=node exec -c \"\"$1\"\"\""},
{"--arg=node exec -c '$1'", "\"--arg=node exec -c '$1'\""},
{"'--arg=node exec -c \"$1\"'", "\"'--arg=node exec -c \"$1\"'\""}
{"'--arg=node exec -c \"$1\"'", "\"'--arg=node exec -c \"\"$1\"\"'\""}

#else
{"", "''"},
Expand Down

0 comments on commit f388eec

Please sign in to comment.