mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
With Python 3, there have been some sorting inconsistencies. Always sort the items to allow for the lit test to reliably match the output.
9 lines
412 B
Plaintext
9 lines
412 B
Plaintext
REQUIRES: shell
|
|
|
|
RUN: env REMOTE_RUN_CHILD_FOO=foo REMOTE_RUN_CHILD_BAR=bar %debug-remote-run sh -c 'echo ":${FOO}:" ":${BAR}:"' | %FileCheck %s
|
|
RUN: env REMOTE_RUN_CHILD_FOO=foo REMOTE_RUN_CHILD_BAR=bar %debug-remote-run -v sh -c 'echo ":${FOO}:" ":${BAR}:"' 2>&1 >/dev/null | %FileCheck -check-prefix VERBOSE %s
|
|
|
|
CHECK: {{^:foo: :bar:$}}
|
|
|
|
VERBOSE: /usr/bin/env BAR=bar FOO=foo sh -c echo ":${FOO}:" ":${BAR}:"
|