mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
remote-run uses rsync instead of sftp server. Some of the tests were incorrectly labelled as requiring sftp server. Fixed those and replaced the requirement with rsync.
17 lines
467 B
Plaintext
17 lines
467 B
Plaintext
REQUIRES: rsync
|
|
|
|
RUN: %empty-directory(%t)
|
|
RUN: %empty-directory(%t-REMOTE)
|
|
RUN: %debug-remote-run --output-prefix %t touch %t/output
|
|
RUN: ls %t/ | %FileCheck %s
|
|
RUN: ls %t-REMOTE/output/ | %FileCheck %s
|
|
|
|
RUN: %empty-directory(%t)
|
|
RUN: %empty-directory(%t/nested)
|
|
RUN: %empty-directory(%t-REMOTE)
|
|
RUN: %debug-remote-run --output-prefix %t touch %t/nested/output
|
|
RUN: ls %t/nested/ | %FileCheck %s
|
|
RUN: ls %t-REMOTE/output/nested/ | %FileCheck %s
|
|
|
|
CHECK: {{^output$}}
|